2023-11-05 17:00:28 +00:00
|
|
|
name: Run Tests
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: docker
|
2024-10-19 10:34:32 +00:00
|
|
|
container:
|
|
|
|
image: node:20-bullseye
|
2023-11-05 17:00:28 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run build --if-present
|
|
|
|
- run: npm test
|
2024-02-18 02:16:00 +00:00
|
|
|
- run: npm run lint
|