Skip to content

Commit

Permalink
ci: add unit testing check
Browse files Browse the repository at this point in the history
  • Loading branch information
Patai5 committed May 20, 2024
1 parent 0cf4041 commit b34526c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Check

on:
push:
branches:
Expand All @@ -10,6 +11,15 @@ defaults:
working-directory: ./code

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4

- run: npm install
- run: npm test

lint:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit b34526c

Please sign in to comment.