[修正] typedocのビルドに失敗するエラーを修正 #46
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: BuildTests | |
on: | |
push: | |
branches: [master, develop] | |
pull_request: | |
branches: [master, develop] | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "22" | |
- name: allow write in work dir | |
run: sudo chmod -R 777 . | |
- name: Install Dependencies | |
run: | | |
npm -g install pnpm | |
pnpm install | |
- name: Building niconicomments | |
run: pnpm build |