-
-
Notifications
You must be signed in to change notification settings - Fork 26
50 lines (39 loc) · 1.2 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
45
46
47
48
49
50
name: Lint
on:
push:
branches: ['*']
pull_request:
branches: ['*']
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v4
- name: NPM Install
run: |
node --version
npm --version
npm i
cd convert
npm i
- name: Add config
run: |
echo "export default {};" > src/lib/data/config.js
echo "export const firebaseConfig = null;" > src/lib/data/firebase-config.js
- name: Add catalog
run: echo "export const catalog = [];" > src/lib/data/catalog.js
- name: TypeScript/Svelte Check
run: |
npm list --depth=0 typescript
npm run check
- name: ESLint
run: |
npm list --depth=0 eslint eslint-plugin-import prettier
npm run lint
- name: Build
run: |
npm run build:examples
- name: Test
run: |
npm run test