Skip to content

(docs) More licence fixing #248

(docs) More licence fixing

(docs) More licence fixing #248

Workflow file for this run

name: Build and test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-test:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- name: Bootstrap Kate
run: node support/bootstrap.js --npm-install --download-electron --unzip-electron --build
- name: Run browser tests
run: node make test:ci
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30