Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,22 @@ on:
pull_request:
branches: [ main ]

env:
NPM_VERSION: 11.6.0

jobs:
test-universal:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
node-version: [24.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install --global npm@${{ env.NPM_VERSION }}
- run: npm ci
- run: npm run lint -w @tiny-type-api/universal
- run: npm run build -w @tiny-type-api/universal
Expand All @@ -27,13 +31,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
node-version: [24.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install --global npm@${{ env.NPM_VERSION }}
- run: npm ci
- run: npm run lint -w @tiny-type-api/client
- run: npm run build -w @tiny-type-api/client
Expand All @@ -43,13 +48,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
node-version: [24.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install --global npm@${{ env.NPM_VERSION }}
- run: npm ci
- run: npm run build -w @tiny-type-api/universal -w @tiny-type-api/client
- run: npm run test -w @tiny-type-api/examples
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
node_modules
tsconfig.tsbuildinfo
tsconfig.*.tsbuildinfo
30 changes: 0 additions & 30 deletions biome.json

This file was deleted.

Loading
Loading