Skip to content

Commit

Permalink
ci: add github test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PiTrem committed Sep 25, 2023
1 parent 3edab15 commit 991b551
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18.17.0
node-version: 18.17.1
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: yarn compile
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: jest

on:
pull_request:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18.17.1
- run: yarn install
- run: yarn test

0 comments on commit 991b551

Please sign in to comment.