sudo-archive/.github/workflows/linting_testing.yml

57 lines
1.1 KiB
YAML
Raw Normal View History

2022-12-27 14:08:03 +00:00
name: Linting and Testing
on:
push:
branches:
- master
- dev
2023-03-10 18:10:08 +00:00
pull_request:
2022-12-27 14:08:03 +00:00
jobs:
linting:
name: Run Linters
runs-on: ubuntu-latest
steps:
- name: Checkout code
2023-01-19 03:56:25 +00:00
uses: actions/checkout@v3
2022-12-27 14:08:03 +00:00
- name: Install Node.js
2023-01-19 03:56:25 +00:00
uses: actions/setup-node@v3
2022-12-27 14:08:03 +00:00
with:
2023-01-19 03:56:25 +00:00
node-version: 18
2023-03-10 18:17:11 +00:00
cache: 'yarn'
2022-12-27 14:08:03 +00:00
- name: Install Yarn packages
run: yarn install
- name: Run ESLint Report
run: yarn lint:report
# continue on error, so it still reports it in the next step
continue-on-error: true
2023-03-10 18:25:14 +00:00
- uses: actions/upload-artifact@v3
2022-12-27 14:08:03 +00:00
with:
2023-03-10 18:25:14 +00:00
name: eslint_report.json
2023-03-10 18:10:08 +00:00
path: eslint_report.json
2023-03-10 18:17:11 +00:00
building:
name: Build project
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install Yarn packages
run: yarn install
- name: Build Project
run: yarn build