Skip to content

Commit 923540d

Browse files
author
Nejc
committed
Merge branch 'master' of https://github.com/nejcm/js-algorithms
2 parents 685785f + e27fefa commit 923540d

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/node.js.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,25 @@ jobs:
1010
test:
1111
name: Running tests...
1212
runs-on: ubuntu-latest
13-
13+
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Use node.js ${{ matrix.node-version }}
1717
uses: actions/setup-node@v1
1818
with:
1919
node-version: ${{ matrix.node-version }}
20-
- name: Installing
21-
- run: npm install
22-
- name: Test
23-
- run: npm run validate
20+
21+
- name: Install and test
22+
run: |
23+
npm install
24+
npm run validate
2425
2526
- name: Building docs
26-
- run: npm run docz:build
27+
run: npm run docz:build
2728
- name: Deploy 🚀
2829
uses: JamesIves/github-pages-deploy-action@3.5.9
2930
with:
3031
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3132
BRANCH: gh-pages
3233
FOLDER: .docz/dist
34+

0 commit comments

Comments
 (0)