Skip to content

Bump eslint-plugin-n from 16.0.2 to 16.2.0 #318

Bump eslint-plugin-n from 16.0.2 to 16.2.0

Bump eslint-plugin-n from 16.0.2 to 16.2.0 #318

Workflow file for this run

name: Continuous Integration
on: [pull_request]
jobs:
CI:
name: Lint + Test + Build
timeout-minutes: 15
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Checkout respository
uses: actions/checkout@v3
- name: 'Setup pnpm'
uses: pnpm/action-setup@v2
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
- name: Lint
run: pnpm run lint
- name: Type check
run: pnpm run type-check
- name: Test
run: pnpm run test
- name: Prune devDependencies
run: pnpm prune --prod
- name: Integration Test
run: pnpm run test:integration