Skip to content

Commit 1bd8451

Browse files
committed
Run setup-node
1 parent 68c1f49 commit 1bd8451

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/nodejs-ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- "main"
7+
paths-ignore:
8+
- "**.md"
9+
pull_request_target:
10+
branches:
11+
- "main"
12+
paths-ignore:
13+
- "**.md"
14+
15+
env:
16+
HUSKY: 0
17+
18+
jobs:
19+
build:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v3
23+
- uses: actions/setup-node@v3
24+
with:
25+
node-version: 16
26+
cache: "yarn"
27+
- name: Install modules
28+
run: yarn install --frozen-lockfile

0 commit comments

Comments
 (0)