fix(time): Reserve 10 days for TemporalFlux #8801
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-22.04 | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- name: Validate commit messages | |
uses: oliversalzburg/action-commit-validator@d2d4febb6b8c29d22afa98d8b9fd39f442758e37 # v0.0.4 | |
if: github.event_name == 'pull_request' | |
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 | |
schema | |
settings | |
ui | |
accepted_types: | | |
chore | |
ci | |
docs | |
feat | |
fix | |
refactor | |
test | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Select NodeJS version | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 | |
with: | |
# renovate: datasource=docker depName=node versioning=node | |
node-version: "20.12.2" | |
- run: yarn install --immutable | |
- run: yarn build:all | |
- run: yarn lint:all | |
- run: yarn test:all | |
- run: yarn kitten-scientists:build |