diff --git a/.github/workflows/dev-test.yml b/.github/workflows/dev-test.yml index aab8738039f4..d3fb8add8fd3 100644 --- a/.github/workflows/dev-test.yml +++ b/.github/workflows/dev-test.yml @@ -16,7 +16,7 @@ jobs: - "12" - "10" - name: Dev test on node ${{ matrix.node }} and ${{ matrix.os }} + name: Node.js ${{ matrix.node }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} steps: - name: Checkout @@ -27,7 +27,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v1 with: - node-version: ${{ matrix.NODE }} + node-version: ${{ matrix.node }} - name: Install Dependencies run: yarn install --frozen-lockfile diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6fd4095e77d0..24446b047bf2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,21 +20,24 @@ jobs: - name: Install Dependencies run: yarn install --frozen-lockfile - - name: Check dependencies + - name: Check Dependencies run: yarn check-deps - - name: Check JSDoc types + - name: Check JSDoc Types run: yarn check-types - - name: Lint code + - name: Lint Code run: yarn lint - - name: Lint docs + - name: Lint Docs run: yarn lint-docs - name: Spellcheck run: yarn spellcheck - - name: Check file changes + - run: Lint Changelog + name: yarn lint-changelog + + - name: Check File Changes run: yarn && echo "Listing changed files:" && git diff --name-only --exit-code && echo "No files changed during lint." diff --git a/.github/workflows/prod-test.yml b/.github/workflows/prod-test.yml index ac2c3bc5f4dc..4d7e780b7440 100644 --- a/.github/workflows/prod-test.yml +++ b/.github/workflows/prod-test.yml @@ -42,7 +42,7 @@ jobs: - "12" - "10" - name: Prod test on node ${{ matrix.node }} and ${{ matrix.os }} + name: Node.js ${{ matrix.node }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} needs: [build] steps: @@ -65,5 +65,8 @@ jobs: name: dist path: dist + - name: Lint Code + run: yarn test:dist + - name: Run Test run: yarn test:dist