fix carousel js #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
# Enable Buildkit and let compose use it to speed up image building | |
env: | |
DOCKER_BUILDKIT: 1 | |
COMPOSE_DOCKER_CLI_BUILD: 1 | |
on: | |
pull_request: | |
branches: ["master", "main"] | |
push: | |
branches: ["master", "main"] | |
merge_group: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code Repository | |
uses: actions/checkout@v4 | |
- name: Copy .env.example file | |
uses: canastro/copy-file-action@master | |
with: | |
source: "env.example" | |
target: ".env" | |
- name: Build the Stack | |
run: "USER_ID=`id -u` docker compose build" | |
- name: Run pre-commmit | |
run: docker compose run app pre-commit run --all-files | |
- name: Tear down the Stack | |
run: docker compose down |