diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 6af8bf6..f2b182c 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -8,18 +8,13 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 - strategy: - matrix: - node-version: [ '22.x' ] - os: [ ubuntu-latest, macos-latest ] - steps: - name: Clone repository uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: '22.x' - name: Install dependencies run: | npm ci