Skip to content

Commit

Permalink
ci: fix name-values
Browse files Browse the repository at this point in the history
  • Loading branch information
kilee1230 committed Dec 23, 2023
1 parent e6b90fd commit 77da60f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ jobs:
fi
- name: Checkout code and Use Node.js
if: ${{ skip_ci == "false" }}
if: ${{ GITHUB_OUTPUT == "false" }}
uses: actions/checkout@v4

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

- name: Install dependencies
if: ${{ skip_ci == "false" }}
if: ${{ GITHUB_OUTPUT == "false" }}
run: yarn install

- name: Lint
if: ${{ skip_ci == "false" }}
if: ${{ GITHUB_OUTPUT == "false" }}
run: yarn lint

- name: Test and Coverage
Expand Down

0 comments on commit 77da60f

Please sign in to comment.