Skip to content

Actually include tar.gz in dist #6

Actually include tar.gz in dist

Actually include tar.gz in dist #6

Workflow file for this run

name: Lint commits
on: [push, pull_request]
jobs:
lint:
name: Lint commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Save code linting report JSON
run: pnpm run lint:report
continue-on-error: true
- name: Annotate code linting results
uses: ataylorme/eslint-annotate-action@v2
with:
report-json: "eslint_report.json"