forgejo test
All checks were successful
/ deploy (push) Successful in 33s

This commit is contained in:
Jonatan Nilsson 2024-11-10 00:29:08 +00:00
parent ee0326c9f4
commit 6818bb6bd8

View file

@ -0,0 +1,19 @@
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