8000 Merge pull request #193 from tajo/fix-ios · tajo/react-range@85ffc08 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge pull request #193 from tajo/fix-ios #2

Merge pull request #193 from tajo/fix-ios

Merge pull request #193 from tajo/fix-ios #2

Workflow file for this run

name: Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 15
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Run Unit tests
run: pnpm test:unit
- name: Run Typecheck
run: pnpm typecheck
- name: Run Build
run: pnpm build
0