diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d38b0cb1..e4db6ca2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,19 +16,14 @@ jobs: steps: - name: Checkout tree uses: actions/checkout@v5 - - name: Set-up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: check-latest: true node-version: ${{ matrix.node-version }} - + package-manager-cache: false - run: corepack enable - - run: yarn install --immutable - - run: yarn format:check - - run: yarn build - - run: yarn test diff --git a/.github/workflows/typedoc.yml b/.github/workflows/typedoc.yml index 95a56372..262c5273 100644 --- a/.github/workflows/typedoc.yml +++ b/.github/workflows/typedoc.yml @@ -25,27 +25,21 @@ jobs: steps: - name: Checkout tree uses: actions/checkout@v5 - - name: Set-up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: check-latest: true node-version-file: .nvmrc - + package-manager-cache: false - run: corepack enable - - run: yarn install --immutable - - run: yarn typedoc - - name: Set-up Pages uses: actions/configure-pages@v5 - - name: Upload artifact uses: actions/upload-pages-artifact@v4 with: path: docs - - name: Deploy odoc to GitHub Pages uses: actions/deploy-pages@v4 id: deployment diff --git a/.github/workflows/version-or-publish.yml b/.github/workflows/version-or-publish.yml index 12a12d11..a3b8256e 100644 --- a/.github/workflows/version-or-publish.yml +++ b/.github/workflows/version-or-publish.yml @@ -21,16 +21,14 @@ jobs: steps: - name: Checkout tree uses: actions/checkout@v5 - - name: Set-up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: check-latest: true node-version-file: .nvmrc - + package-manager-cache: false - run: corepack enable - run: yarn install --immutable - - name: Create Release Pull Request uses: changesets/action@v1 with: