20 lines
327 B
YAML
20 lines
327 B
YAML
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: arch
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Run Tests
|
||
|
run: |
|
||
|
npm install
|
||
|
npm run test -- --ignore-only
|
||
|
if [ $? -ne 0 ]; then
|
||
|
exit 1
|
||
|
fi
|