Skip to content

Commit

Permalink
Merge pull request #52 from IT4Change/ensure_node_19
Browse files Browse the repository at this point in the history
fix(workflow): ensure we run on node 19
  • Loading branch information
ulfgebhardt committed Feb 24, 2023
2 parents db3643c + 23ce59e commit 7f00403
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Node 19
uses: actions/setup-node@v3
with:
node-version: '19'

- name: npm-install
run: npm install

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Node 19
uses: actions/setup-node@v3
with:
node-version: '19'

- name: npm-install
run: npm install

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/vuepress-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
- name: Checkout
uses: actions/checkout@master

- name: Setup Node 19
uses: actions/setup-node@v3
with:
node-version: '19'

- name: vuepress-deploy
uses: jenkey2011/vuepress-deploy@v1.8.1
env:
Expand Down

0 comments on commit 7f00403

Please sign in to comment.