Skip to content

Version Packages

Version Packages #346

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch: {}
jobs:
build:
name: Run Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --immutable
- run: yarn lint
- run: yarn prettier:check
- run: yarn fix --check
- run: yarn tsc
- run: yarn build:all
- run: yarn test:all