Skip to content

Merge branch 'develop' into feature/gh-actions #32

Merge branch 'develop' into feature/gh-actions

Merge branch 'develop' into feature/gh-actions #32

Workflow file for this run

name: Unit & Lint
on: [push]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8.6.2
run_install: false
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install Dependencies
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: pnpm install --frozen-lockfile
- run: pnpm run lint
- run: pnpm run test:unit