Create test.yml
This commit is contained in:
parent
3da0866bfc
commit
85dd513daa
|
@ -0,0 +1,15 @@
|
||||||
|
name: test
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
workflow_dispatch:
|
||||||
|
pull_request:
|
||||||
|
types: [opened, synchronize, reopened, edited]
|
||||||
|
jobs:
|
||||||
|
main:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: install dependencies
|
||||||
|
run: npm install
|
||||||
|
- name: build
|
||||||
|
run: npm test
|
Loading…
Reference in New Issue