Skip to content

chore(structure): change package build to copy from nostr #18

chore(structure): change package build to copy from nostr

chore(structure): change package build to copy from nostr #18

Workflow file for this run

name: test
on:
# push:
# branches:
# - main
pull_request:
branches:
- main
- next
- alpha
- beta
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18, 20, 22]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v2
- uses: oven-sh/setup-bun@v2
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: just build
- run: just test
- uses: codecov/codecov-action@v4