We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 737fdfa commit 216fcd0Copy full SHA for 216fcd0
.github/workflows/docs.yml
@@ -8,22 +8,19 @@ on:
8
branches: [ "develop" ]
9
10
jobs:
11
- build:
12
-
+ docs:
13
runs-on: ubuntu-latest
14
15
strategy:
16
matrix:
17
node-version: [18.x]
18
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
19
20
steps:
21
- uses: actions/checkout@v3
22
- name: Use Node.js ${{ matrix.node-version }}
23
uses: actions/setup-node@v3
24
with:
25
node-version: ${{ matrix.node-version }}
26
cache: 'npm'
+ cache-dependency-path: '**/package-lock.json'
27
- run: npm ci
28
- run: npm run docs
29
-# - run: npm test
0 commit comments