merge queue: embarking main (9994ca2) and [#2234 + #2235] together #2519
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: Continuous Integration | |
permissions: read-all | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
# yamllint disable-line rule:line-length | |
group: "${{ github.workflow }}-${{ github.head_ref || github.run_id }}" | |
cancel-in-progress: true | |
jobs: | |
actionlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.0.0 | |
- name: Download actionlint | |
id: get_actionlint | |
# yamllint disable-line rule:line-length | |
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) 1.6.15 | |
- name: Check workflow files | |
run: ${{ steps.get_actionlint.outputs.executable }} -color | |
lint: | |
timeout-minutes: 20 | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4.0.0 | |
- name: Setup Node 🔧 | |
uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
node-version: 18 | |
- name: Lint | |
run: | | |
npm ci | |
npm run eslint | |
docs: | |
timeout-minutes: 20 | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4.0.0 | |
- name: Setup Node 🔧 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Build 🔧 | |
env: | |
PR_NUMBER: ${{ github.event.pull_request.number }} | |
run: | | |
npm ci | |
npm run build -- --prefix-paths | |
# NOTE(sileht): workflow run on/pull_request doesn't have access to | |
# secrets | |
# So, we upload it as artifact, then another workflow | |
# docs-upload-gcp-temp.yaml will upload it on gcp. | |
- name: Upload ☁️ | |
uses: actions/upload-artifact@v3 | |
with: | |
name: docs-pr-${{ github.event.pull_request.number }} | |
path: public | |
# yamllint disable-line rule:line-length | |
- run: echo "docs=https://docs-preview.mergify.com/${{ github.event.pull_request.number }}/docs" >> "$GITHUB_OUTPUT" | |
shell: bash |