Files
web/.github/workflows/test.yml
dependabot[bot] 91e2b0cf7e Bump actions/checkout from 3.2.0 to 3.3.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.2.0 to 3.3.0.
- [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/v3.2.0...v3.3.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-07 13:06:17 +00:00

35 lines
520 B
YAML

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