Create pr.yml

This commit is contained in:
Lukasz Ostrowski 2023-01-29 21:51:18 +01:00 committed by GitHub
parent bd1066e13c
commit 3e540fdc16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

18
.github/workflows/pr.yml vendored Normal file
View file

@ -0,0 +1,18 @@
name: QA
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.1
with:
version: 6.19.1
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Check linters
run: pnpm lint