Enhancement: Outline icons for unpublished and deleted resources in tree #267
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: "Compile Assets" | |
| on: | |
| push: | |
| paths: | |
| - "_build/templates/**" | |
| pull_request: | |
| paths: | |
| - "_build/templates/**" | |
| workflow_dispatch: | |
| jobs: | |
| compile-assets: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '14' | |
| cache: 'npm' | |
| cache-dependency-path: _build/templates/default/package-lock.json | |
| - name: Install NPM dependencies | |
| run: cd _build/templates/default && npm install | |
| - name: Build assets | |
| run: cd _build/templates/default && npm run build |