Skip to content

Commit

Permalink
Add jest test action
Browse files Browse the repository at this point in the history
  • Loading branch information
huchenlei committed Aug 9, 2024
1 parent b5e8a95 commit 8ace935
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Tests CI

on:
push:
branches:
- main
- master
- 'dev*'
pull_request:
branches:
- main
- master
- 'dev*'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Build
run: |
npm ci
npm run build
- name: Run jest tests
run: |
npm test -- --verbose

0 comments on commit 8ace935

Please sign in to comment.