Skip to content

Bump @types/node from 20.11.24 to 20.12.2 #160

Bump @types/node from 20.11.24 to 20.12.2

Bump @types/node from 20.11.24 to 20.12.2 #160

Workflow file for this run

name: Unit tests
on:
push:
branches: [master]
pull_request:
branches: ['**/**']
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
jest:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
# Using node action to manage caching node_modules
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test