Skip to content

Commit

Permalink
Merge pull request NemesisRE#294 from NemesisRE/remove_docker_cache_a…
Browse files Browse the repository at this point in the history
…ction

Remove docker cache action
  • Loading branch information
NemesisRE authored Nov 8, 2024
2 parents 1f6ec59 + 1b286f7 commit a766100
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 19 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,8 @@ jobs:
- name: Set-up Node
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: 20
cache: 'pnpm'
- name: Set Playwright version
id: playwright-version
run: |
echo "playwright=$(cat package.json | grep @playwright/test | head -1 | awk -F: '{ print $2 }' | sed 's/[", ]//g')" >> $GITHUB_OUTPUT
- name: Cache Docker images
uses: ScribeMD/[email protected]
with:
key: docker-v1-${{ runner.os }}-${{ hashFiles('.hass/config/.HA_VERSION') }}-${{ steps.playwright-version.outputs.playwright }}
- name: Install deps
run: pnpm install
- name: E2E tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ha-beta-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: 20
cache: 'pnpm'
- name: Install
run: pnpm install
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,8 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: 20
cache: 'pnpm'
- name: Set Playwright version
id: playwright-version
run: |
echo "playwright=$(cat package.json | grep @playwright/test | head -1 | awk -F: '{ print $2 }' | sed 's/[", ]//g')" >> $GITHUB_OUTPUT
- name: Cache Docker images
uses: ScribeMD/[email protected]
with:
key: docker-v1-${{ runner.os }}-${{ hashFiles('.hass/config/.HA_VERSION') }}-${{ steps.playwright-version.outputs.playwright }}
- name: Install
run: pnpm install
- name: E2E tests
Expand Down

0 comments on commit a766100

Please sign in to comment.