Skip to content

Commit 2f8183c

Browse files
committed
fix command being run for build and lint
1 parent 8d7453d commit 2f8183c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
node-version: '16'
2121
cache: 'npm'
2222
- run: npm ci
23-
- run: npm build
23+
- run: npm run build
2424

2525
lint:
2626
name: Lint
@@ -32,7 +32,7 @@ jobs:
3232
node-version: '16'
3333
cache: 'npm'
3434
- run: npm ci
35-
- run: npm lint
35+
- run: npm run lint
3636

3737
test:
3838
name: Test node ${{ matrix.node-version }}

0 commit comments

Comments
 (0)