Skip to content

Update supported browsers to reflect current browser policy (#40) #44

Update supported browsers to reflect current browser policy (#40)

Update supported browsers to reflect current browser policy (#40) #44

Workflow file for this run

name: Validate
on: push
jobs:
test:
name: Lint & Test
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Check out Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: pnpm
node-version-file: package.json
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test