Skip to content

Commit

Permalink
migrate to tsup
Browse files Browse the repository at this point in the history
  • Loading branch information
willybrauner committed Nov 2, 2023
1 parent ad3e475 commit d4db622
Show file tree
Hide file tree
Showing 7 changed files with 5,251 additions and 10,745 deletions.
24 changes: 17 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,33 @@
name: CI
name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: install
run: npm ci
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8

- name: Install dependencies
run: pnpm install

- name: build
run: npm run build
run: pnpm run build

- name: test
run: npm run test
run: pnpm run test
Loading

0 comments on commit d4db622

Please sign in to comment.