Skip to content

create version 1.0.0 #5

create version 1.0.0

create version 1.0.0 #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- run: yarn
- run: yarn prettier
- run: yarn test
- run: yarn build