Skip to content

Revert "chore(main): release 2.0.0" #864

Revert "chore(main): release 2.0.0"

Revert "chore(main): release 2.0.0" #864

Workflow file for this run

name: "build"
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20"]
steps:
- uses: actions/checkout@b56e6a3d768b11aef1d4c73977caf6413c0d74c8 # v3.2.0
with:
fetch-depth: 0
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Check format and lint
run: yarn run format-check && yarn run lint
- name: Run tests
run: yarn test
- name: Build and package
run: yarn run build