Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Support/next upgrade #64

Support/next upgrade

Support/next upgrade #64

Workflow file for this run

name: Tests & Code Checks
on:
pull_request:
branches: [ "**" ]
jobs:
test-code:
name: Test code
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn install --immutable --immutable-cache --check-cache --frozen-lockfile
- name: Run tests
run: yarn test
- name: Run linter
run: yarn lint
- name: Run typescript
run: yarn typecheck