chore(deps-dev): bump semantic-release from 20.1.3 to 21.0.9 #105
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: 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 |