Bump autofix-ci/action from dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a to ff86a557419858bb967097bfc916833f5647fa8c #195
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
# In TypeScript actions, `dist/` is a special directory. When you reference | |
# an action with the `uses:` property, `dist/index.js` is the code that will be | |
# run. For this project, the `dist/index.js` file is transpiled from other | |
# source files. This workflow ensures the `dist/` directory contains the | |
# expected transpiled code. | |
# | |
# If this workflow is run from a feature branch, it will act as an additional CI | |
# check and fail if the checked-in `dist/` directory does not match what is | |
# expected from the build. | |
name: autofix.ci | |
on: | |
pull_request_target: | |
types: [opened, reopened, synchronize] | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
check-dist: | |
name: Check dist/ | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
id: setup-node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- name: Install Dependencies | |
id: install | |
run: npm ci && npm install | |
- name: Run prettier | |
id: format | |
run: npx prettier --write . | |
- name: Build | |
id: build | |
run: npm run bundle | |
- name: Push fixed files | |
id: push | |
uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c |