ci workflow adaptions
This commit is contained in:
parent
4993f8e96b
commit
9026fdc3d6
1 changed files with 9 additions and 2 deletions
|
@ -4,7 +4,13 @@
|
||||||
name: CI Pipeline
|
name: CI Pipeline
|
||||||
run-name: ${{ github.actor }} is running CI pipeline
|
run-name: ${{ github.actor }} is running CI pipeline
|
||||||
# trigger build when pushing, or when creating a pull request
|
# trigger build when pushing, or when creating a pull request
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Label of the container job
|
# Label of the container job
|
||||||
|
@ -70,6 +76,7 @@ jobs:
|
||||||
&& echo "CACHE_VIEWS=false" >> .env.test
|
&& echo "CACHE_VIEWS=false" >> .env.test
|
||||||
&& echo "APP_KEY=pfi5N2ACN4tMJ5d8d8BPHfh3FEuvleej" >> .env.test
|
&& echo "APP_KEY=pfi5N2ACN4tMJ5d8d8BPHfh3FEuvleej" >> .env.test
|
||||||
&& echo "DRIVE_DISK=local" >> .env.test
|
&& echo "DRIVE_DISK=local" >> .env.test
|
||||||
|
&& echo "OAI_LIST_SIZE=200" >> .env.test
|
||||||
|
|
||||||
# finally run the tests
|
# finally run the tests
|
||||||
# - run: npm test
|
# - run: npm test
|
||||||
|
@ -121,4 +128,4 @@ jobs:
|
||||||
run: npm install
|
run: npm install
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: npx japa --group "ReferenceValidation"
|
run: node ace test functional --groups "ReferenceValidation"
|
||||||
|
|
Loading…
Add table
Reference in a new issue