Skip to content

Commit

Permalink
build: github action for test
Browse files Browse the repository at this point in the history
  • Loading branch information
seven332 committed Oct 23, 2023
1 parent 88b276c commit cf0039e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

on:
push:
branches: ['main']
pull_request:
branches: ['main']

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v3
with:
node-version: 'lts'

- run: npm ci
- run: npm run test

0 comments on commit cf0039e

Please sign in to comment.