-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (44 loc) · 1.06 KB
/
lint.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
name: lint
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
components:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/components
steps:
- name: checkout code
uses: actions/checkout@v4
- name: set node version
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: ./packages/components/package-lock.json
- name: install dependencies
run: npm ci
- name: lint
run: npm run lint
embed:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/embed
steps:
- name: checkout code
uses: actions/checkout@v4
- name: set node version
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: ./packages/embed/package-lock.json
- name: install dependencies
run: npm ci
- name: lint html
run: npm run lint:html