Add tests CI pipeline
This commit is contained in:
parent
a11957ab35
commit
f6e386811e
4 changed files with 68 additions and 14020 deletions
21
.github/workflows/tests.yml
vendored
Normal file
21
.github/workflows/tests.yml
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
name: Run CI Tests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
- '!master'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
node-version: [20.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- run: npm install
|
||||
- run: npm run test:headless:singleRun
|
||||
Loading…
Add table
Add a link
Reference in a new issue