Skip to content

Bump eslint-config-prettier from 8.10.0 to 9.1.0 #41

Bump eslint-config-prettier from 8.10.0 to 9.1.0

Bump eslint-config-prettier from 8.10.0 to 9.1.0 #41

Workflow file for this run

name: Test PR
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
- name: Restore cache
uses: actions/cache@v3
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Run prettier
run: npm run prettier