-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (53 loc) · 1.32 KB
/
node.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
48
49
50
51
52
53
54
55
56
57
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
lint:
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./client
timeout-minutes: 5
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: "client/.nvmrc"
cache-dependency-path: "client/package-lock.json"
cache: "npm"
- name: Install
run: npm ci
- name: Lint
run: npm run lint
build:
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./client
env:
FMP_KEY: ""
timeout-minutes: 10
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: "client/.nvmrc"
cache-dependency-path: "client/package-lock.json"
cache: "npm"
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test