Skip to content

Commit

Permalink
Update action
Browse files Browse the repository at this point in the history
  • Loading branch information
KristjanESPERANTO committed Jan 1, 2025
1 parent 54b7bc6 commit 2683a90
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# SPDX-License-Identifier: CC0-1.0

name: Continuous Integration
"on":
- "push"
- "pull_request"
on:

Check warning on line 7 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / build (10.x)

7:1 [truthy] truthy value should be one of [false, true]

Check warning on line 7 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / build (12.x)

7:1 [truthy] truthy value should be one of [false, true]

Check warning on line 7 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / build (14.x)

7:1 [truthy] truthy value should be one of [false, true]

Check warning on line 7 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / build (15.x)

7:1 [truthy] truthy value should be one of [false, true]
- push
- pull_request

jobs:
build:
Expand All @@ -31,10 +31,10 @@ jobs:
# - "18.x"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -45,7 +45,7 @@ jobs:
id: npm-cache-dir
run: |
echo "::set-output name=dir::$(npm config get cache)"
- uses: actions/cache@v3
- uses: actions/cache@v4
# use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
id: npm-cache
with:
Expand Down

0 comments on commit 2683a90

Please sign in to comment.