diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5caa1fc..55b8823 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,18 +5,22 @@ on: pull_request: branches: ['*'] +permissions: + contents: read + pull-requests: read + jobs: ci: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 19.x, 20.x] + node-version: [18.x, 19.x, 20.x, 22.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: yarn install --frozen-lockfile