Skip to content

Bump eslint from 8.57.0 to 8.57.1 #535

Bump eslint from 8.57.0 to 8.57.1

Bump eslint from 8.57.0 to 8.57.1 #535

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup
id: setup
uses: prefecthq/actions-setup-nodejs@main
- name: Lint application
run: |
npm run lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup
id: setup
uses: prefecthq/actions-setup-nodejs@main
- name: Install dependencies
run: npm ci install
- name: Build package
run: npm run build