Skip to content

Commit

Permalink
Update workflows to use node 12
Browse files Browse the repository at this point in the history
  • Loading branch information
warrensearle committed Dec 22, 2021
1 parent 9b4c49b commit 293da82
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/manual-deploy.yml
Expand Up @@ -32,7 +32,7 @@ jobs:
${{ runner.os }}-
- uses: actions/setup-node@master
with:
node-version: '10'
node-version: '12'
- name: Installing project dependencies
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc && npm ci
- name: Lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-merge.yml
Expand Up @@ -59,7 +59,7 @@ jobs:
${{ runner.os }}-
- uses: actions/setup-node@master
with:
node-version: '10'
node-version: '12'
- name: Installing project dependencies
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc && npm ci
- name: Lint
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
${{ runner.os }}-
- uses: actions/setup-node@master
with:
node-version: '10'
node-version: '12'
- name: Installing project dependencies
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc && npm ci
- name: Create env file
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-pull-request.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
${{ runner.os }}-
- uses: actions/setup-node@master
with:
node-version: '10'
node-version: '12'
- name: Installing project dependencies
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc && npm ci
- name: Lint
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
${{ runner.os }}-
- uses: actions/setup-node@master
with:
node-version: '10'
node-version: '12'
- name: Installing project dependencies
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc && npm ci
- name: Create env file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-release.yml
Expand Up @@ -26,7 +26,7 @@ jobs:
${{ runner.os }}-
- uses: actions/setup-node@master
with:
node-version: '10'
node-version: '12'
- name: Installing project dependencies
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc && npm ci
- name: Create env file
Expand Down

0 comments on commit 293da82

Please sign in to comment.