Skip to content

Bump actions/cache from 3 to 4 #30

Bump actions/cache from 3 to 4

Bump actions/cache from 3 to 4 #30

Workflow file for this run

name: Test Action
on:
push:
paths:
- '.github/**'
- action.yml
jobs:
build-dev:
runs-on: ubuntu-latest
outputs:
cache-key: ${{ steps.build.outputs.cache-key }}
steps:
- id: build
uses: ebitkov/build-symfony@main
with:
repository: symfony/skeleton
cache-build: true
# Check if the build was cached correctly and can be restored
restore-cache:
needs: build-dev
runs-on: ubuntu-latest
steps:
- uses: actions/cache/restore@v4
with:
key: ${{ needs.build-dev.outputs.cache-key }}
path: ./
fail-on-cache-miss: true
build-with-webpack:
runs-on: ubuntu-latest
steps:
- uses: ebitkov/build-symfony@main
with:
repository: symfony/skeleton
composer-additional-dependencies: webpack
build-webpack-assets: true
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: ebitkov/build-symfony@main
with:
repository: symfony/skeleton
run-tests: true