Skip to content

Bump lint-staged from 14.0.1 to 15.2.1 #81

Bump lint-staged from 14.0.1 to 15.2.1

Bump lint-staged from 14.0.1 to 15.2.1 #81

Workflow file for this run

name: Test
on:
pull_request:
types:
- opened
- synchronize
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
- uses: pnpm/action-setup@v2
- run: pnpm install --frozen-lockfile
# Right now, just test if it builds. Later on we can run tests.
- run: pnpm build