Skip to content

chore: release 3.0.0-beta.1 #437

chore: release 3.0.0-beta.1

chore: release 3.0.0-beta.1 #437

Workflow file for this run

name: Checks
on:
push:
branches:
- master
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run TypeScript
run: yarn run typescript
- name: Run ESLint
run: yarn run lint
- name: Build
run: yarn build