Skip to content

build: bump eslint-config-prettier from 8.10.0 to 9.1.0 #148

build: bump eslint-config-prettier from 8.10.0 to 9.1.0

build: bump eslint-config-prettier from 8.10.0 to 9.1.0 #148

Workflow file for this run

name: Tests
on:
push:
branches:
- 1.x
pull_request:
branches:
- 1.x
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm install
- name: Run build
run: npm run build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm install
- name: Run eslint
run: npm run eslint
- name: Run prettier
run: npm run prettier -- --check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm install
- name: Run tests
run: npm test