Frontend #1263
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
# DO NOT EDIT THIS FILE! | |
# | |
# It's auto-generated by sonata-project/dev-kit package. | |
name: Frontend | |
on: | |
schedule: | |
- cron: '30 0 * * *' | |
push: | |
branches: | |
- 4.x | |
- 5.x | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
webpack-encore: | |
name: Webpack Encore | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install NPM dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Run Eslint | |
run: npx eslint assets/js | |
- name: Run Stylelint | |
run: npx stylelint assets/scss | |
- name: Run Prettier | |
run: npx prettier --check assets | |
- name: Run Webpack Encore | |
run: npx encore production | |
- name: Check if the compilation is up to date | |
run: git diff --no-patch --exit-code |