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