Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
if [ ${{ inputs.installDependencies }} = true ]; then
echo "cache=pnpm" >> $GITHUB_OUTPUT
else
echo "cache=" >> "$GITHUB_ENV"
echo "cache=" >> $GITHUB_OUTPUT
fi

- name: install pnpm
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-and-dockerize.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ jobs:
source: .
set: |
*.cache-from=type=gha,ignore-error=true,scope=${{ steps.docker_cache_key.outputs.replaced }}
*.cache-from=type=gha,ignore-error=true,scope=refs_heads_main-${{ inputs.targets }}-${{ matrix.platform == 'linux/amd64' && 'linux_amd64' || 'linux_arm64' }}
*.cache-to=type=gha,mode=max,ignore-error=true,scope=${{ steps.docker_cache_key.outputs.replaced }}

- name: docker details pr comment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
node_modules/.cache/prettier
key:
lint-cache-${{ hashFiles('**/pnpm-lock.yaml', 'packages/web/*/tailwind.config.ts',
'tsconfig.eslint.json', 'packages/web/app/tsconfig.json') }}-${{github.sha}}
'tsconfig.eslint.json', 'packages/web/app/tsconfig.json') }}
restore-keys: |
lint-cache-${{ hashFiles('**/pnpm-lock.yaml', 'packages/web/*/tailwind.config.ts',
'tsconfig.eslint.json', 'packages/web/app/tsconfig.json') }}-
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
branches:
- main

concurrency:
group: ci-main
cancel-in-progress: false

jobs:
# Release NPM packages and tarballs
package:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: pr
on:
pull_request: {}

concurrency:
group: pr-${{ github.event.pull_request.number }}
cancel-in-progress: true

env:
HIVE_TOKEN: ${{ secrets.HIVE_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prettier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
path: |
.eslintcache
node_modules/.cache/prettier
key: lint-cache-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ github.sha }}
key: lint-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
lint-cache-${{ hashFiles('**/pnpm-lock.yaml') }}-

Expand Down
Loading