-
Notifications
You must be signed in to change notification settings - Fork 6
47 lines (41 loc) · 998 Bytes
/
ci_js.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Continuous Integration (JS)
on:
push:
paths:
- .github/workflows/ci_js.yml
- owmods_gui/frontend/**
branches:
- main
- renovate/js
pull_request:
paths:
- .github/workflows/ci_js.yml
- owmods_gui/frontend/**
branches:
- main
- dev
jobs:
js:
name: Check Frontend
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./owmods_gui/frontend
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: owmods_gui/frontend/package.json
cache: npm
cache-dependency-path: owmods_gui/frontend/package-lock.json
- name: Install Dependencies
run: npm install
- name: Lint
run: npm run lint-dry
- name: Check Formatting
run: npm run prettier-check