diff --git a/.github/workflows/pr-any.yml b/.github/workflows/pr-any.yml index 33823cbd..3f711351 100644 --- a/.github/workflows/pr-any.yml +++ b/.github/workflows/pr-any.yml @@ -9,9 +9,15 @@ jobs: name: ${{ matrix.step }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: ${{ matrix.step }} - run: | - yarn install --immutable | grep -v 'YN0013' - npm i node-gyp - yarn ${{ matrix.step }} + - uses: actions/checkout@v4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + name: checkout + - name: Setup node v18 + uses: actions/setup-node@v4 + with: + node-version: 18 + - name: ${{ matrix.step }} + run: | + yarn install --immutable + yarn ${{ matrix.step }}