Add version redirects to current version #1535
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: test | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
consistency: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare Yarn | |
uses: ./.github/actions/prepare/ | |
- name: Lint Wiki | |
run: yarn lint:check | |
- name: Format Wiki | |
run: yarn format:check | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare Yarn | |
uses: ./.github/actions/prepare/ | |
- name: Prepare build | |
run: yarn prepare | |
shell: bash | |
- name: Checkout remote | |
run: yarn checkout:remote | |
- name: Build | |
run: yarn build |