Bump @types/node from 20.8.10 to 20.11.15 #451
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
on: push | |
name: Jest Suite | |
jobs: | |
jest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: yarn | |
- run: yarn install --ignore-optional --frozen-lockfile --non-interactive --check-files | |
# not technically a jest suite, but a build should pass too | |
- run: yarn build | |
- run: yarn jest:ci |