mirror of
https://github.com/sussy-code/sudo-proxy.git
synced 2026-01-11 20:10:18 +00:00
52 lines
941 B
YAML
52 lines
941 B
YAML
name: Linting and Testing
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- dev
|
|
pull_request:
|
|
|
|
jobs:
|
|
linting:
|
|
name: Run Linters
|
|
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: 'npm'
|
|
|
|
- name: Install npm packages
|
|
run: npm install
|
|
|
|
- name: Prepare for linting
|
|
run: npm run prepare
|
|
|
|
- name: Run ESLint
|
|
run: npm lint
|
|
|
|
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: 'npm'
|
|
|
|
- name: Install npm packages
|
|
run: npm install
|
|
|
|
- name: Build Project
|
|
run: npm build
|