Skip to content

✨ version up yarn & add deploy script #93

✨ version up yarn & add deploy script

✨ version up yarn & add deploy script #93

Workflow file for this run

# ci github action
name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test
- name: Check code formatting
run: yarn prettier