From 3e540fdc165bce047f20ec22ceb6f13305967a54 Mon Sep 17 00:00:00 2001 From: Lukasz Ostrowski Date: Sun, 29 Jan 2023 21:51:18 +0100 Subject: [PATCH] Create pr.yml --- .github/workflows/pr.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/pr.yml diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 0000000..c8f2294 --- /dev/null +++ b/.github/workflows/pr.yml @@ -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