Skip to content

Commit 299e92c

Browse files
committed
Meta: Fix build action
1 parent 4adc9e0 commit 299e92c

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- name: Checkout 🛎️
12-
uses: actions/checkout@v2
13-
- uses: ljharb/actions/node/run@main
14-
name: 'npm install && npm run build-master'
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v2
1513
with:
1614
node-version: lts/*
17-
command: 'build-master'
15+
- run: 'npm install'
16+
- run: 'npm run build-master'

0 commit comments

Comments
 (0)