diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9fa232..772b189 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,25 +15,19 @@ on: jobs: lint-node: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [12.x, 14.x] steps: - name: Print metadata and context information - env: - TMPL_GITHUB_ACTION_CONTEXT_RUNNER: ${{ toJson(runner) }} run: | echo "Git SHA: $GITHUB_SHA" echo "Git Ref: $GITHUB_REF" echo "Workflow Actor: $GITHUB_ACTOR" - echo "GitHub Action Runner: $TMPL_GITHUB_ACTION_CONTEXT_RUNNER" - 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 linter + - name: Run linters run: yarn lint