Skip to content

Commit

Permalink
chore: gh action
Browse files Browse the repository at this point in the history
make test yaml file
  • Loading branch information
jlangy committed Nov 15, 2023
1 parent 76bc0a4 commit 40192fe
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ jobs:
pip install -r requirements.txt
asdf reshim
pre-commit run --color=always --show-diff-on-failure --all-files
- name: Run unit tests
run: |
cd app
yarn test
commitlint:
runs-on: ubuntu-22.04
steps:
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Run unit tests

on: push

jobs:
unit-test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version: 18
- run: |
cd app
yarn
yarn test

0 comments on commit 40192fe

Please sign in to comment.