diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f4e5859..48dd0f4 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -6,16 +6,12 @@ jobs: build-and-test: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18.x] - steps: - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 18.x - name: Build Code run: npm ci && npm run compile - name: Lint Construct