From 05e2bd08f97a58b06f4f09cc6087dd76f60c5014 Mon Sep 17 00:00:00 2001 From: Untone Date: Sun, 4 Feb 2024 15:02:22 +0300 Subject: [PATCH] nodever-fix2 --- .github/workflows/node-ci.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/node-ci.yml b/.github/workflows/node-ci.yml index 7fab8ef4..7ae1425e 100644 --- a/.github/workflows/node-ci.yml +++ b/.github/workflows/node-ci.yml @@ -1,4 +1,4 @@ -name: CI +name: "deploy" on: [push] @@ -8,28 +8,32 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 + with: + node-version: '18' - name: Install dependencies run: npm ci - - name: Lint styles - run: npm run lint:styles - - - name: Check types - run: npm run typecheck - - name: Install Biome run: npm install --global --save-exact @biomejs/biome - name: Lint with Biome run: npx biome ci . + - name: Lint styles + run: npm run lint:styles + + - name: Check types + run: npm run typecheck + Playwright: name: Run end-to-end tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 + with: + node-version: '18' - name: Install dependencies run: npm ci - name: Install playwright browsers