Skip to content

John/privacy policy

John/privacy policy #1

Workflow file for this run

name: Run Tests and Build
on:
pull_request:
branches:
- main
- dev
push:
branches:
- main
- dev
jobs:
unit-testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm test