chore(deps): bump actions/upload-artifact from 6 to 7 in the github-actions group #26
Workflow file for this run
This file contains hidden or 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: "Lint" | |
| permissions: | |
| contents: "read" | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| branches: | |
| - "*" | |
| jobs: | |
| lint: | |
| name: "Lint" | |
| runs-on: "depot-ubuntu-24.04-small" | |
| steps: | |
| - uses: "actions/checkout@v6" | |
| - uses: "bahmutov/npm-install@v1" | |
| with: | |
| useLockFile: false | |
| - name: "Run prettier" | |
| run: "CI=true yarn run oxfmt --check" | |
| - name: "Run lint" | |
| run: "CI=true yarn lint" | |
| - name: "Run publint" | |
| run: "yarn build && yarn lint:package" | |
| conventional-commits: | |
| name: "Lint Commit Messages" | |
| runs-on: "depot-ubuntu-24.04-small" | |
| if: "github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.action == 'reopened' || github.event.action == 'edited')" | |
| steps: | |
| - uses: "actions/checkout@v6" | |
| - uses: "webiny/action-conventional-commits@v1.3.1" |