chore(deps): lock file maintenance #2215
Workflow file for this run
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: Pull Request | |
on: | |
pull_request: | |
push: | |
jobs: | |
qa: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Select NodeJS version | |
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 | |
with: | |
# renovate: datasource=docker depName=node versioning=node | |
node-version: "20.9.0" | |
- run: yarn install --immutable | |
- run: yarn build:all | |
- run: yarn lint:all | |
- run: yarn test:all | |
- run: yarn kitten-scientists:build | |
- run: yarn workspace @kitten-science/action-commit-validator tsc --build | |
- uses: ./packages/action-commit-validator | |
with: | |
accept_breaking_changes: false | |
accept_emoji: false | |
accepted_scopes: | | |
bonfire | |
religion | |
science | |
space | |
time | |
trade | |
village | |
workshop | |
api | |
build | |
container | |
core | |
deps | |
deps-dev | |
filters | |
i18n | |
settings | |
ui | |
accepted_types: | | |
chore | |
ci | |
docs | |
feat | |
fix | |
refactor | |
test | |
repo_token: ${{ secrets.GITHUB_TOKEN }} |