Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sbdchd committed Apr 25, 2024
1 parent 4a4199d commit 8b588d4
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 0 deletions.
73 changes: 73 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: docs

on:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true

jobs:
pre_job:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
paths_result: ${{ steps.skip_check.outputs.paths_result }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@c449d86cf33a2a6c7a4193264cc2578e2c3266d4 # pin@v4
with:
paths: '["docs/**", ".github/workflows/**"]'
typecheck:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: "docs/package.json"
cache-dependency-path: "docs/yarn.lock"
cache: "yarn"
- name: Install dependencies
working-directory: "docs"
run: yarn install --frozen-lockfile
- name: run typechecker
working-directory: "docs"
run: ./s/typecheck

fmt:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: "docs/package.json"
cache-dependency-path: "docs/yarn.lock"
cache: "yarn"
- name: Install dependencies
working-directory: "docs"
run: yarn install --frozen-lockfile
- name: Run tests
working-directory: "docs"
run: ./s/fmt-ci

verify_build:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: "docs/package.json"
cache-dependency-path: "docs/yarn.lock"
cache: "yarn"
- name: Install dependencies
working-directory: "docs"
run: yarn install --frozen-lockfile
- name: Run tests
working-directory: "docs"
run: ./s/build
4 changes: 4 additions & 0 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"private": true,
"volta": {
"node": "12.4.0",
"yarn": "1.22.17"
},
"devDependencies": {
"@types/react": "^16.9.17",
"docusaurus": "^1.14.3",
Expand Down

0 comments on commit 8b588d4

Please sign in to comment.