fix(deps): bump eslint-plugin-jest from 27.9.0 to 28.2.0 #376
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: ✨ Test | |
on: | |
push: | |
branches: | |
- "**" | |
- "!main" | |
jobs: | |
test-node20: | |
name: Run tests using node 20 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install packages | |
run: yarn ci:install | |
- name: Test | |
run: yarn ci:test | |
test-node18: | |
name: Run tests using node 18 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install packages | |
run: yarn ci:install | |
- name: Test | |
run: yarn ci:test |