Skip to content
This repository has been archived by the owner on Feb 24, 2025. It is now read-only.

Commit

Permalink
ci: add testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk committed Jan 4, 2024
1 parent bb78c37 commit e548bce
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Test & build
on: [pull_request]
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: npm ci --legacy-peer-deps
- run: npm test
- run: npm run build

0 comments on commit e548bce

Please sign in to comment.