Skip to content

build: 1.0.1

build: 1.0.1 #2

Workflow file for this run

name: CI/CD
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v3
with: { node-version: 18, cache: "yarn" }
- run: yarn install
- run: yarn prettier --check .
- run: yarn lint
- run: yarn test