diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 840de1d..6124a85 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,19 +10,19 @@ concurrency: cancel-in-progress: true jobs: - test: - name: Test - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version-file: .nvmrc - cache: yarn - - name: Install dependencies - run: yarn install --immutable - - name: Test - run: yarn test + # test: + # name: Test + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v3 + # - uses: actions/setup-node@v3 + # with: + # node-version-file: .nvmrc + # cache: yarn + # - name: Install dependencies + # run: yarn install --immutable + # - name: Test + # run: yarn test lint: name: Lint diff --git a/Rakefile b/Rakefile index c9dd889..332589c 100644 --- a/Rakefile +++ b/Rakefile @@ -144,7 +144,7 @@ namespace :sass do sh %{npm install} sh %{ln -sf ../.language/node_modules ../tool/node_modules} sh %{npx typedoc \ - --plugin ../tool/typedoc-theme.ts --theme sass-site \ + --plugin ../tool/typedoc-theme.js --theme sass-site \ --out ../source/documentation/js-api \ --cleanOutputDir \ js-api-doc/index.d.ts diff --git a/tool/typedoc-theme.ts b/tool/typedoc-theme.js similarity index 99% rename from tool/typedoc-theme.ts rename to tool/typedoc-theme.js index a0fdc4d..85ea241 100644 --- a/tool/typedoc-theme.ts +++ b/tool/typedoc-theme.js @@ -1,9 +1,10 @@ -import { +/* eslint-disable @typescript-eslint/no-var-requires */ +const { DefaultTheme, DefaultThemeRenderContext, JSX, UrlMapping, -} from 'typedoc'; +} = require('typedoc'); function bind(fn, first) { return (...r) => fn(first, ...r);