Skip to content

Dockerize

Dockerize #35

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install
run: yarn install
- name: format
run: yarn prettier -c .
- name: test
run: yarn test