Skip to content

chore: bump @fltri/eslint-config from 1.2.4 to 1.2.5 #333

chore: bump @fltri/eslint-config from 1.2.4 to 1.2.5

chore: bump @fltri/eslint-config from 1.2.4 to 1.2.5 #333

Workflow file for this run

name: Quality assurance
on:
pull_request:
branches: ["main"]
jobs:
qa:
name: Quality assurance
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm test
- name: Build
run: |
npm run build