Bump actions/setup-node from 3 to 4 #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sauce Labs | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
# To not exceed Sauce Labs concurrency limit | |
max-parallel: 1 | |
fail-fast: false | |
matrix: | |
node: [10, 12, 14] | |
name: Node ${{ matrix.node }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install | |
run: npm install | |
env: | |
# Download Sauce Connect binary now instead of on first run | |
SAUCE_CONNECT_DOWNLOAD_ON_INSTALL: true | |
- name: Add host | |
run: echo "127.0.0.1 airtap.local" | sudo tee -a /etc/hosts | |
- name: Test | |
run: npm run test:integration | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
DEBUG_COLORS: true |