Skip to content

chore: update actions to v4 #705

chore: update actions to v4

chore: update actions to v4 #705

Workflow file for this run

name: Run Tests
on:
pull_request:
push:
branches: main
jobs:
run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: TypeScript Check
run: yarn ts:check
# - name: Core Tests
# run: yarn test