Skip to content

Commit

Permalink
ci: simplify conditione expression
Browse files Browse the repository at this point in the history
  • Loading branch information
kilee1230 committed Dec 23, 2023
1 parent c9cf9b3 commit e434651
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,23 @@ jobs:
run: echo "${{ env.skip_ci }}"

- name: Checkout code and Use Node.js
if: ${{ env.skip_ci == false }}
if: ${{ !env.skip_ci }}
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
if: ${{ env.skip_ci == false }}
if: ${{ !env.skip_ci }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
if: ${{ env.skip_ci == false }}
if: ${{ !env.skip_ci }}
run: yarn install

- name: Lint
if: ${{ env.skip_ci == false }}
if: ${{ !env.skip_ci }}
run: yarn lint

- name: Test and Coverage
if: ${{ env.skip_ci == false }}
if: ${{ !env.skip_ci }}
run: yarn test:coverage

0 comments on commit e434651

Please sign in to comment.