Add a gitea workflow

This commit is contained in:
Lee Miller 2024-02-27 22:18:07 +02:00
parent 95abeecc84
commit 6a364b4107
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
name: Testing
on: [push]
jobs:
default:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
apt-get update
apt-get install -yq --no-install-suggests --no-install-recommends \
xauth xvfb
- name: Check out repository code
uses: actions/checkout@v3
- name: Install
run: npm install
- name: Run tests
run: npm test