Bump braces from 3.0.2 to 3.0.3 #720
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: Node.js CI | |
on: | |
pull_request: | |
branches: ['**'] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
node-version: [18.x] | |
os: | |
[ | |
["ubuntu-20.04"], | |
["windows-2022"], | |
["macos-14"], | |
] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm i | |
- run: npm i -g typescript && tsc | |
- run: npm run checkPlugins | |
- run: npm run lint | |
- run: npm run test | |
auto_compile_and_push: | |
if: github.ref != 'refs/heads/master' | |
needs: [ | |
test | |
] | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository. | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- run: npm i && npm i -g typescript && rm -rdf ./FlowPlugins && tsc -v && tsc | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
## fix this check | |
if: github.event.pull_request.head.repo.full_name == github.repository | |
with: | |
commit_message: Apply auto-build changes | |
- run: | | |
(git diff --quiet HEAD -- 2>/dev/null && echo "No uncommitted changes" \ | |
|| (echo "Error - Uncommitted changes found." && git --no-pager diff HEAD && exit 1)) |