Skip to content

Commit

Permalink
Explicitly use consistent node version in post-merge workflow (#689)
Browse files Browse the repository at this point in the history
If that is not explicitly set, CI will use whatever comes with `ubuntu_latest` and that is not what we want for this workflow. Node 14 is consistent with what is used in the other workflows. The PR to upgrade these is #684.

This should be merged after #688 and make CI green again on merged branches.
  • Loading branch information
micgro42 authored Aug 16, 2023
1 parent c5fb2ab commit d480cfa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/document.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@ jobs:
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: '14.x'

- name: Install and Build
run: |
npm install
npm ci
npm run build:storybook
- name: Deploy 🚀
Expand Down

0 comments on commit d480cfa

Please sign in to comment.