Skip to content

Commit

Permalink
ci: setup CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yusukebe committed Oct 15, 2023
1 parent 9c4f1b3 commit 5572305
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: ci
on:
push:
branches: [main, next]
pull_request:
branches: ['*']

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20.x
- run: yarn install --frozen-lockfile
- run: yarn test
- run: yarn build

0 comments on commit 5572305

Please sign in to comment.