Compare commits

...

2 commits

Author SHA1 Message Date
2308a72c7a Merge branch 'deploy' of https://git.smgames.club/mad-star-studio/hub-site into deploy
Some checks failed
Testing / test (push) Failing after 2m0s
Testing / test (pull_request) Failing after 1m36s
2024-11-18 20:30:36 -08:00
5fe1066de2 Beginning addition of CI/CD pipeline 2024-11-18 20:30:21 -08:00

View file

@ -0,0 +1,28 @@
name: Testing
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test