Revert "Bump default to 2.0.1 (#62)" (#63) #402
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: "PR Checks" | |
on: [pull_request, push] | |
jobs: | |
check_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: "npm ci" | |
run: npm ci | |
- name: "npm run build" | |
run: npm run build | |
- name: "check for uncommitted changes" | |
# Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed. | |
run: | | |
git diff --exit-code --stat -- . ':!node_modules' \ | |
|| (echo "##[error] found changed files after build. please 'npm run build'" \ | |
"and check in all changes" \ | |
&& exit 1) |