Updates #223
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Test server | |
run: | | |
npm ci --prefix server | |
npm run test --prefix server | |
- name: Build and test webapp | |
run: | | |
npm ci --prefix webapp | |
npm run build --prefix webapp | |
npm run test --prefix webapp | |
- name: Build plugin | |
run: | | |
npm ci --prefix plugin | |
npm run build --prefix plugin | |
- name: Run integration tests | |
run: | | |
npm ci --prefix test | |
npm run test --prefix test | |
- name: Upload cypress screenshots | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: cypress-screenshots | |
path: test/cypress/screenshots/* |