2021-02-09 20:35:33 +01:00
|
|
|
name: On pull request
|
|
|
|
|
|
|
|
on: pull_request
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
web_lint:
|
|
|
|
name: Web - Lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- uses: actions/setup-node@master
|
|
|
|
with:
|
|
|
|
node-version: 14.x
|
|
|
|
- run: npm install
|
|
|
|
working-directory: ./web
|
|
|
|
- name: Lint
|
|
|
|
run: npm run lint:cmd
|
|
|
|
working-directory: ./web
|
|
|
|
|
|
|
|
web_build:
|
|
|
|
name: Web - Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- uses: actions/setup-node@master
|
|
|
|
with:
|
|
|
|
node-version: 14.x
|
|
|
|
- run: npm install
|
|
|
|
working-directory: ./web
|
|
|
|
- name: Build
|
|
|
|
run: npm run build
|
|
|
|
working-directory: ./web
|
2021-02-09 20:35:33 +01:00
|
|
|
|
|
|
|
web_test:
|
|
|
|
name: Web - Test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- uses: actions/setup-node@master
|
|
|
|
with:
|
|
|
|
node-version: 14.x
|
|
|
|
- run: npm install
|
|
|
|
working-directory: ./web
|
|
|
|
- name: Test
|
|
|
|
run: npm run test
|
|
|
|
working-directory: ./web
|