Skip to content

Bump eslint from 8.47.0 to 8.49.0 #34

Bump eslint from 8.47.0 to 8.49.0

Bump eslint from 8.47.0 to 8.49.0 #34

Workflow file for this run

name: Continuous Integration
on: [push]
env:
CI: true
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- name: Setup Node (v${{ matrix.node-version }})
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm --if-present format
- run: pnpm --if-present lint
- run: pnpm --if-present test
- run: pnpm --if-present build