Skip to content

Commit

Permalink
ci: skip lint step on yarn 14 only
Browse files Browse the repository at this point in the history
  • Loading branch information
legobeat committed Sep 15, 2023
1 parent a02d394 commit 7096753
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
pull_request:

jobs:
build-lint-test-legacy:
build-lint-test:
name: Build, Lint, and Test
runs-on: ubuntu-20.04
strategy:
Expand All @@ -33,6 +33,8 @@ jobs:
- run: yarn allow-scripts
- run: yarn build
- run: yarn lint
# def remove before node.js v140
if: "${{ !startsWith(matrix.node-version, '14') }}"
- run: yarn test
- name: Validate RC changelog
if: ${{ startsWith(github.head_ref, 'release/') }}
Expand Down

0 comments on commit 7096753

Please sign in to comment.