2021-12-19 21:43:13 +01:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
2023-02-11 21:12:55 +01:00
|
|
|
# Triggers the workflow on push events and pull requests but only for the dev branch
|
2021-12-19 21:43:13 +01:00
|
|
|
push:
|
2022-03-21 03:02:36 +01:00
|
|
|
branches: [dev]
|
2023-02-11 21:12:55 +01:00
|
|
|
pull_request:
|
|
|
|
branches: [dev]
|
2021-12-19 21:43:13 +01:00
|
|
|
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-12-22 10:18:15 +01:00
|
|
|
name: Build
|
2021-12-19 21:43:13 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-02-11 21:12:55 +01:00
|
|
|
- uses: actions/checkout@v3
|
2021-12-22 10:18:15 +01:00
|
|
|
- name: Use Node.js 16.13.1
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 16.13.1
|
2022-03-21 03:02:36 +01:00
|
|
|
cache: "npm"
|
2021-12-22 10:18:15 +01:00
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
|
|
|
- name: Build the production app
|
|
|
|
run: npm run build
|
|
|
|
lint:
|
|
|
|
name: Lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-02-11 21:12:55 +01:00
|
|
|
- uses: actions/checkout@v3
|
2021-12-22 10:18:15 +01:00
|
|
|
- name: Use Node.js 16.13.1
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 16.13.1
|
2022-03-21 03:02:36 +01:00
|
|
|
cache: "npm"
|
2021-12-22 10:18:15 +01:00
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
|
|
|
- name: Run linter
|
|
|
|
run: npm run lint:report
|
2022-03-21 03:02:36 +01:00
|
|
|
prettier:
|
2022-03-21 03:03:11 +01:00
|
|
|
name: Prettier
|
2022-03-21 03:02:36 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-02-11 21:12:55 +01:00
|
|
|
- uses: actions/checkout@v3
|
2022-03-21 03:02:36 +01:00
|
|
|
- name: Use Node.js 16.13.1
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 16.13.1
|
|
|
|
cache: "npm"
|
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
|
|
|
- name: Run prettier check
|
|
|
|
run: npm run format:report
|
2021-12-22 10:18:15 +01:00
|
|
|
test:
|
|
|
|
name: Test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-02-11 21:12:55 +01:00
|
|
|
- uses: actions/checkout@v3
|
2021-12-22 10:18:15 +01:00
|
|
|
- name: Use Node.js 16.13.1
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 16.13.1
|
2022-03-21 03:02:36 +01:00
|
|
|
cache: "npm"
|
2021-12-22 10:18:15 +01:00
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
2022-01-17 08:28:26 +01:00
|
|
|
- name: Run tests
|
2021-12-22 10:18:15 +01:00
|
|
|
run: npm run test
|