TASK: Github Action workflow adjustments #13
Workflow file for this run
This file contains hidden or 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: Tests | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: 'Neos CMS colorpicker plugin frontend build' | |
| defaults: | |
| run: | |
| working-directory: ./Resources/Private/Scripts/ColorPickerEditor | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '22' | |
| cache: 'yarn' | |
| cache-dependency-path: ./Resources/Private/Scripts/ColorPickerEditor/yarn.lock | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Build the plugin | |
| run: yarn build |