Skip to content

Examples

Examples #14

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
- master
pull_request:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
- master
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
# ...
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
# run any `bun` or `bunx` command
- run: npm i
- run: bun run build
- run: bun test