-
Notifications
You must be signed in to change notification settings - Fork 2
50 lines (35 loc) · 1.12 KB
/
nodejs.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: Linting, Building and Testing
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18.17.0' # specify Node.js version here
- name: Install pnpm
run: curl -f https://get.pnpm.io/v6.js | node - add --global pnpm
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Run lint
run: pnpm run lint # add lint script in package.json
# test_and_build:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v2
# - name: Setup Node.js
# uses: actions/setup-node@v2
# with:
# node-version: '18.17.0'
# - name: Install pnpm
# run: curl -f https://get.pnpm.io/v6.js | node - add --global pnpm
# - name: Install dependencies
# run: pnpm install --no-frozen-lockfile
# - name: Run build
# run: pnpm run build
# - name: Run test
# run: pnpm run test