build(*): Add testing workflow

This commit is contained in:
Josh Creek
2025-04-24 19:38:20 +01:00
parent 35d9345036
commit a6fd357f68
2 changed files with 23 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run Playwright/BDD tests
run: npm run bdd:full