Skip to content

Bump typescript from 5.3.3 to 5.4.5 #165

Bump typescript from 5.3.3 to 5.4.5

Bump typescript from 5.3.3 to 5.4.5 #165

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