Files
web/.github/workflows/test.yml
T
yubiuser 45b1784a6c
CodeQL / Analyze (push) Has been cancelled
Codespell / spell-check (push) Has been cancelled
editorconfig-checker / editorconfig-checker (push) Has been cancelled
Check for merge conflicts / main (push) Has been cancelled
Tests / Node (push) Has been cancelled
Bump actions/checkout from 4.2.1 to 4.2.2 (#3163)
2024-10-26 14:14:42 +02:00

35 lines
526 B
YAML

name: Tests
on:
push:
branches:
- development
- master
pull_request:
branches:
- "**"
env:
FORCE_COLOR: 2
jobs:
run:
name: Node
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4.2.2
- name: Set up Node.js
uses: actions/setup-node@v4.1.0
with:
node-version: "20.x"
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm run testpr