Upgrade all packages #153
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
pull_request_target: | |
branches: | |
- main | |
jobs: | |
lint: | |
strategy: | |
matrix: | |
node: ["14.x"] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 2 | |
- name: Use Node.js 14.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
# cache: "yarn" | |
# cache-dependency-path: yarn.lock | |
- name: Install deps | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: yarn | |
- name: Lint | |
run: yarn lint | |
continue-on-error: false | |
- name: Merge lint reports | |
run: jq -s '[.[]]|flatten' reports/lint-results/*.json &> reports/lint-results/eslint_report.json | |
- name: Annotate Code Linting Results | |
uses: ataylorme/[email protected] | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
report-json: "reports/lint-results/eslint_report.json" | |
- name: Upload ESLint report | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: lint-results | |
path: lint-results |