Skip to content

feat: handle data: imports #1548

feat: handle data: imports

feat: handle data: imports #1548

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
id-token: write
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [18, 20, 22]
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- uses: oven-sh/setup-bun@v2
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == 22 }}
with:
bun-version: latest
- uses: denoland/setup-deno@v1
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == 22 }}
with:
deno-version: v1.x
- run: pnpm install
- run: pnpm lint
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == 22 }}
- run: pnpm build
- run: pnpm vitest run --coverage
- run: pnpm test:node-register
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == 22 }}
- run: pnpm test:bun --coverage
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == 22 }}
- run: pnpm test:native
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == 22 }}
- name: nightly release
if: |
github.event_name == 'push' &&
!contains(github.event.head_commit.message, '[skip-release]') &&
!startsWith(github.event.head_commit.message, 'docs')
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> ~/.npmrc &&
pnpm changelogen --canary nightly --publish
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true