Skip to content

Commit 83084a3

Browse files
committed
Renamed docs workflow to main
1 parent 216fcd0 commit 83084a3

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed
Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# This workflow will do a clean installation of node dependencies, cache/restore them and generate documentation.
2-
name: Docs
1+
# This workflow builds documentation and formats/checks code
2+
name: NPM CI
33

44
on:
55
push:
@@ -8,19 +8,24 @@ on:
88
branches: [ "develop" ]
99

1010
jobs:
11-
docs:
11+
main:
12+
name: Main
1213
runs-on: ubuntu-latest
14+
1315
strategy:
1416
matrix:
1517
node-version: [18.x]
16-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
18+
1719
steps:
1820
- uses: actions/checkout@v3
21+
1922
- name: Use Node.js ${{ matrix.node-version }}
2023
uses: actions/setup-node@v3
2124
with:
2225
node-version: ${{ matrix.node-version }}
2326
cache: 'npm'
2427
cache-dependency-path: '**/package-lock.json'
2528
- run: npm ci
29+
30+
- name: Generate documentation
2631
- run: npm run docs

0 commit comments

Comments
 (0)