Skip to content

Commit

Permalink
feat: ci-test
Browse files Browse the repository at this point in the history
  • Loading branch information
yangwooseong committed Apr 18, 2024
1 parent a1885d8 commit 2f93931
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: checks
on: [pull_request]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc

- run: nvm use
- run: yarn build
- run: yarn lint
- run: yarn typecheck
- run: yarn test

0 comments on commit 2f93931

Please sign in to comment.