Skip to content

Merge pull request #10 from octet-stream/dependabot/github_actions/pn… #99

Merge pull request #10 from octet-stream/dependabot/github_actions/pn…

Merge pull request #10 from octet-stream/dependabot/github_actions/pn… #99

Workflow file for this run

name: ESLint
on:
push:
branches: [main]
paths:
- "**.ts"
- "**.tsx"
- "package.json"
- "pnpm-lock.yaml"
- ".eslintrc.json"
- ".eslintignore"
- ".github/workflows/eslint.yml"
pull_request:
branches: [main]
paths:
- "**.ts"
- "**.tsx"
- "package.json"
- "pnpm-lock.yaml"
- ".eslintrc.json"
- ".eslintignore"
- ".github/workflows/eslint.yml"
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{steps.pnpm-cache.outputs.STORE_PATH}}
key: ${{runner.os}}-pnpm-store-${{hashFiles('**/pnpm-lock.yaml')}}
restore-keys: |
${{runner.os}}-pnpm-store-
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Run ESLint
run: pnpm run eslint