We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3db0b1f commit c3875e5Copy full SHA for c3875e5
.github/workflows/regress.yml
@@ -16,6 +16,17 @@ jobs:
16
- uses: actions/checkout@v4
17
- uses: actions/setup-python@v5
18
- uses: pre-commit/[email protected]
19
+ - name: Get gems and node files from cache
20
+ id: cache-bundle-npm
21
+ uses: actions/cache@v4
22
+ with:
23
+ path: |
24
+ .home/.gems
25
+ node_modules
26
+ key: ${{ hashFiles('Gemfile.lock') }}-${{ hashFiles('package-lock.json') }}
27
+ - if: ${{ steps.cache-sif.outputs.cache-hit != 'true' }}
28
+ name: Build container
29
+ run: ./bin/build_container
30
regress-smoke:
31
runs-on: ubuntu-latest
32
env:
0 commit comments