chore: bump semantic-release from 24.1.3 to 24.2.0 (#125) #319
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: Integration tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Tests for Node version ${{ matrix.node-version }} | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [ 20.x, 22.x ] | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm ci | |
- run: npm run lint | |
- name: Run test suite | |
run: npm run test-integration |