Skip to content

Add Dependabot configuration file #24

Add Dependabot configuration file

Add Dependabot configuration file #24

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
permissions:
contents: read
env:
FORCE_COLOR: 1
NPM_CONFIG_COLOR: always
jobs:
test-and-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Run linting
run: pnpm lint
- name: Run build and type checking
run: pnpm build
- name: Run tests
run: pnpm test