Skip to content

Commit

Permalink
feat(root): remove node 14 from CI
Browse files Browse the repository at this point in the history
TICKET: WP-337
  • Loading branch information
zahin-mohammad committed Jul 24, 2023
1 parent b0531d8 commit 2a3931e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -59,28 +59,28 @@ jobs:
run: yarn run postinstall

- name: Lint Commit Messages
if: ${{ startsWith(matrix.node-version, '14') }}
if: ${{ startsWith(matrix.node-version, '16') }}
run: |
GITHUB_REPO_BRANCH=$GITHUB_BASE_REF yarn run check-commits
- name: Check In-Repo Package Versions
if: ${{ startsWith(matrix.node-version, '14') }}
if: ${{ startsWith(matrix.node-version, '16') }}
run: yarn run check-versions

- name: Dependency Audit
if: ${{ startsWith(matrix.node-version, '14') }}
if: ${{ startsWith(matrix.node-version, '16') }}
run: yarn run improved-yarn-audit --min-severity high

- name: Lint Source Code
if: ${{ startsWith(matrix.node-version, '14') }}
if: ${{ startsWith(matrix.node-version, '16') }}
run: yarn run lint

- name: Check Source Code Formatting
if: ${{ startsWith(matrix.node-version, '14') }}
if: ${{ startsWith(matrix.node-version, '16') }}
run: yarn run check-fmt

- name: Check Package Dependencies
if: ${{ startsWith(matrix.node-version, '14') }}
if: ${{ startsWith(matrix.node-version, '16') }}
run: yarn run check-deps

- name: Unit Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16

- name: Install BitGoJS
run: yarn install --with-frozen-lockfile
Expand Down

0 comments on commit 2a3931e

Please sign in to comment.