Skip to content

chore(deps-dev): bump lint-staged from 13.3.0 to 14.0.0 #96

chore(deps-dev): bump lint-staged from 13.3.0 to 14.0.0

chore(deps-dev): bump lint-staged from 13.3.0 to 14.0.0 #96

Workflow file for this run

name: Unit Tests
on: [pull_request, push]
jobs:
prepare_matrix:
runs-on: ubuntu-latest
outputs:
versions: ${{ steps.generate-matrix.outputs.versions }}
steps:
- name: Generate Node.js versions matrix
id: generate-matrix
run: |
sudo apt-get install -y lynx
lynx -dump https://endoflife.date/nodejs | grep -E -o '[0-9]+[( a-zA-Z]+LTS\)' | grep -E -o '([0-9]+)' > eol.list
cat eol.list
lts1=$(cat eol.list | head -1)
lts2=$(cat eol.list | head -2 | tail -1)
lts3=$(cat eol.list | head -3 | tail -1)
VERSIONS="[$lts1, $lts2, $lts3]"
echo "versions=${VERSIONS}" >> "$GITHUB_OUTPUT"
test:
needs:
- prepare_matrix
strategy:
matrix:
node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm i -g npm
name: Update NPM
- run: npm install --no-package-lock
name: Install dev dependencies
- run: npm run lint
name: Run linter
- run: npm run test
name: Run unit tests
analyze_wda:
strategy:
matrix:
os: [macos-11, macos-12]
xcode_version: [13, 14]
exclude:
- os: macos-11
xcode_version: 14
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode_version }}
- run: |
pushd "$(pwd)"
cd WebDriverAgentMac
xcodebuild -project "WebDriverAgentMac.xcodeproj" -scheme WebDriverAgentLib analyze
popd
name: Analyze WebDriverAgentLib
- run: |
pushd "$(pwd)"
cd WebDriverAgentMac
xcodebuild -project "WebDriverAgentMac.xcodeproj" -scheme WebDriverAgentRunner analyze
popd
name: Analyze WebDriverAgentRunner
- run: |
pushd "$(pwd)"
cd WebDriverAgentMac
xcodebuild -project "WebDriverAgentMac.xcodeproj" -scheme IntegrationTests analyze
popd
name: Analyze IntegrationTests
- run: |
pushd "$(pwd)"
cd WebDriverAgentMac
xcodebuild -project "WebDriverAgentMac.xcodeproj" -scheme WebDriverAgent analyze
popd
name: Analyze WebDriverAgent