Skip to content

Commit

Permalink
fix: upgrade CI/CD node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Atomiqu committed Oct 24, 2021
1 parent df610a5 commit 410ab67
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
steps:
- name: Checkout Project
uses: actions/checkout@v1
- name: Use Node.js 14
- name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
- name: Restore CI Cache
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-14-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: yarn --ignore-scripts --frozen-lockfile
- name: Copy Config
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/codecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
steps:
- name: Checkout Project
uses: actions/checkout@v2
- name: Install NodeJS v14
- name: Install NodeJS v16
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
- name: Restore CI Cache
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-14-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: |
yarn --ignore-scripts --frozen-lockfile
Expand All @@ -36,15 +36,15 @@ jobs:
steps:
- name: Checkout Project
uses: actions/checkout@v2
- name: Install NodeJS v14
- name: Install NodeJS v16
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
- name: Restore CI Cache
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-14-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }}
- name: Run EditorConfigLint
run: npx eclint fix src tests .github

Expand All @@ -55,15 +55,15 @@ jobs:
steps:
- name: Checkout Project
uses: actions/checkout@v2
- name: Install NodeJS v14
- name: Install NodeJS v16
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
- name: Restore CI Cache
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-14-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: |
yarn --ignore-scripts --frozen-lockfile
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
steps:
- name: Checkout Project
uses: actions/checkout@v2
- name: Install NodeJS v14
- name: Install NodeJS v16
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
- name: Restore CI Cache
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-14-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: |
yarn --frozen-lockfile
Expand Down

0 comments on commit 410ab67

Please sign in to comment.