update to build.js with embedded-sass, remove dart #5
Workflow file for this run
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: Check for compiled styles | |
on: | |
pull_request: | |
jobs: | |
exists: | |
timeout-minutes: 30 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Compile styles | |
run: ./script/run yarn run compile | |
- name: Check that compiled styles are up to date with code changes | |
run: | | |
git diff | |
git diff-index --quiet HEAD |