Skip to content

Commit

Permalink
ci: fix publishing (#11269)
Browse files Browse the repository at this point in the history
The drop of node 12 means we also need to update the version of node we
use when we publish as 12 would cause the check to fail.

Signed-off-by: vince-fugnitto <[email protected]>
  • Loading branch information
vince-fugnitto authored Jun 7, 2022
1 parent b7e763b commit b2e44a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ jobs:
with:
fetch-depth: 0 # To fetch all history for all branches and tags. (Will be required for caching with lerna: https://github.com/markuplint/markuplint/pull/111)

- name: Use Node.js 12.x
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'

- name: Use Python 3.x
Expand Down

0 comments on commit b2e44a9

Please sign in to comment.