2021-02-10 19:37:46 +01:00
|
|
|
name: "Pull Requests"
|
2021-02-01 17:34:12 +01:00
|
|
|
|
|
|
|
on:
|
2022-03-25 16:24:21 +01:00
|
|
|
workflow_dispatch:
|
2021-02-01 17:34:12 +01:00
|
|
|
pull_request:
|
|
|
|
types: [synchronize, opened, reopened]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
main:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set node version
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
2022-03-25 15:59:54 +01:00
|
|
|
node-version: '17.x'
|
2021-02-01 17:34:12 +01:00
|
|
|
|
|
|
|
- name: Install
|
|
|
|
run: |
|
|
|
|
npm install
|
2021-02-12 14:51:51 +01:00
|
|
|
npm run setheapsize
|
2021-02-01 17:34:12 +01:00
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
run: npx grunt lint
|
|
|
|
|
|
|
|
- name: Unit Tests
|
|
|
|
run: |
|
|
|
|
npm test
|
|
|
|
npx grunt testnodeconsumer
|
|
|
|
|
|
|
|
- name: Production Build
|
|
|
|
if: success()
|
|
|
|
run: npx grunt prod
|
|
|
|
|
2021-08-10 15:26:33 +02:00
|
|
|
# - name: UI Tests
|
|
|
|
# if: success()
|
|
|
|
# run: xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui
|