Skip to content

Commit

Permalink
chore: ci fixes (#195)
Browse files Browse the repository at this point in the history
* chore: ci fixes

* chore: ci fixes

* chore: ci fixes

* chore: ci fixes
  • Loading branch information
vonovak authored Jun 13, 2023
1 parent 0e593ff commit 929514d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ runs:
node-version-file: .nvmrc

- name: Get yarn cache directory path
uses: actions/setup-node@v3
id: yarn-cache-dir-path
shell: bash
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock', , '**/package.json') }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock', '**/package.json') }}
restore-keys: |
${{ runner.os }}-yarn-
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: CI
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master

jobs:
lint:
Expand Down

0 comments on commit 929514d

Please sign in to comment.