Bump braces from 3.0.2 to 3.0.3 #119
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: Build & Test | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
branches: [ main ] | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Lint/Build/Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- run: npm install | |
- run: npm run lint | |
continue-on-error: true | |
- run: npm run build | |
# - run: | | |
# git status --porcelain | |
# if [[ `git status --porcelain` ]]; then | |
# echo "You forgot to run `npm run build`!" | |
# exit 1 | |
# else | |
# echo "No changes 🎉" | |
# fi | |
# - run: npm test | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |