Skip to content

Commit

Permalink
Add test ci job
Browse files Browse the repository at this point in the history
  • Loading branch information
jasikpark committed Jan 13, 2023
1 parent 93c6530 commit 5ba9447
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,15 @@ jobs:
run: npm install
- name: Check formatting
run: npm run format:check
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install node and npm
uses: volta-cli/action@v4
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test

0 comments on commit 5ba9447

Please sign in to comment.