chore(deps-dev): bump lint-staged from 14.0.1 to 15.0.2 #168
Workflow file for this run
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: Unit Tests | |
on: [pull_request, push] | |
jobs: | |
prepare_matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
versions: ${{ steps.generate-matrix.outputs.versions }} | |
steps: | |
- name: Select 3 most recent LTS versions of Node.js | |
id: generate-matrix | |
run: echo "versions=$(curl -s https://endoflife.date/api/nodejs.json | jq -c '[[.[] | select(.lts != false)][:3] | .[].cycle | tonumber]')" >> "$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 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 |