Skip to content

Commit

Permalink
ci: fix string
Browse files Browse the repository at this point in the history
  • Loading branch information
kilee1230 committed Dec 23, 2023
1 parent 8bc4a67 commit ac1eaab
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 @@ -25,23 +25,23 @@ jobs:
run: echo "${{ env.skip_ci }}"

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

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

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

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

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

0 comments on commit ac1eaab

Please sign in to comment.