Skip to content

Commit

Permalink
Add changes to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
academo committed Jun 10, 2024
1 parent d36020b commit 12fa6d8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,15 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
path: ${{ runner.temp }}
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Install dependencies inside temp
run: cd ${{ runner.temp }} && npm ci
- name: Build documentation website (Dev Portal)
run: npm run docs:build
run: cd ${{ runner.temp }} && npm run docs:build

0 comments on commit 12fa6d8

Please sign in to comment.