diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4130285..299c52b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,9 +10,6 @@ on: [push] jobs: lint-node: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [12.x, 14.x] steps: - name: Print metadata and context information run: | @@ -21,10 +18,10 @@ jobs: echo "Workflow Actor: $GITHUB_ACTOR" - name: Checkout repository uses: actions/checkout@v2 - - name: "Setup Node.js version ${{ matrix.node-version }}" + - name: "Setup Node.js version 14.x" uses: actions/setup-node@v1 with: - node-version: ${{ matrix.node-version }} + node-version: "14.x" - name: Install Node modules run: yarn --frozen-lockfile - name: Run linters