Files
web/.github/workflows/test.yml
T
dependabot[bot] 448e55e872 Bump actions/checkout from 4.2.0 to 4.2.1
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.0 to 4.2.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4.2.0...v4.2.1)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-12 10:18:45 +00: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.1
- name: Set up Node.js
uses: actions/setup-node@v4.0.4
with:
node-version: "20.x"
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm run testpr