mirror of
https://github.com/sussy-code/sudo-proxy.git
synced 2026-04-20 00:12:04 +00:00
GitHub Actions: Linting and Testing
This commit is contained in:
parent
46ffd9b1ff
commit
944b097243
1 changed files with 42 additions and 0 deletions
42
.github/workflows/linting_testing.yml
vendored
Normal file
42
.github/workflows/linting_testing.yml
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
||||||
|
name: Linting and Testing
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- dev
|
||||||
|
pull_request:
|
||||||
|
types: [opened, reopened, synchronize]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
linting:
|
||||||
|
name: Run Linters
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install Node.js
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: 16
|
||||||
|
|
||||||
|
- name: Install NPM packages
|
||||||
|
run: npm install
|
||||||
|
|
||||||
|
- name: Run ESLint Report
|
||||||
|
run: npm run lint:report
|
||||||
|
# continue on error, so it still reports it in the next step
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Annotate Code Linting Results
|
||||||
|
uses: ataylorme/eslint-annotate-action@v2
|
||||||
|
with:
|
||||||
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
report-json: "eslint_report.json"
|
||||||
|
|
||||||
|
- name: Build Project
|
||||||
|
run: npm build
|
||||||
|
|
||||||
|
|
||||||
Loading…
Reference in a new issue