Docs: React and Vue demo apps #114
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
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "README.md" | |
| - "SECURITY.md" | |
| - "LICENCE" | |
| - "GUIDE.md" | |
| - "CONTRIBUTING.md" | |
| - "CODE_OF_CONDUCT.md" | |
| jobs: | |
| compile-themes: | |
| runs-on: ubuntu-latest | |
| name: Compile themes | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| - name: Install npm dependencies | |
| run: | | |
| npm ci | |
| npm install -g sass | |
| shell: bash | |
| working-directory: ./chimera-css | |
| - name: Compile sass | |
| run: | | |
| sass src/themes/chimera.scss build/chimera.css | |
| sass src/themes/chimera-dark.scss build/chimera-dark.css | |
| sass src/themes/chimera-golden.scss build/chimera-golden.css | |
| sass src/themes/chimera-autumn.scss build/chimera-autumn.css | |
| sass src/themes/chimera-plain.scss build/chimera-plain.css | |
| sass src/themes/chimera-blues.scss build/chimera-blues.css | |
| sass src/themes/chimera-nightsky.scss build/chimera-nightsky.css | |
| shell: bash | |
| working-directory: ./chimera-css |