Skip to content

Bump typescript from 5.4.5 to 5.7.2 #307

Bump typescript from 5.4.5 to 5.7.2

Bump typescript from 5.4.5 to 5.7.2 #307

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check formatting
run: yarn lint
- name: Run tests
run: |
yarn build
yarn test
yarn validate