Bump the vitest group with 2 updates #239
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: CI | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Code style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- name: Install dependencies | |
run: npm install | |
- name: Check code style | |
run: npm run lint | |
test: | |
name: Tests | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install Node.js ${{matrix.node-version}} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{matrix.node-version}} | |
- name: Install dependencies | |
run: npm install | |
- name: Run tests | |
run: npm run tests-only | |
- name: Submit coverage | |
if: matrix.node-version == '20.x' | |
uses: coverallsapp/github-action@v2.2.3 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} |