Skip to content

ci: update workflows to use latest version of actions #8

ci: update workflows to use latest version of actions

ci: update workflows to use latest version of actions #8

Workflow file for this run

name: Test and build
on:
push:
branches-ignore:
- master
env:
CI: true
jobs:
test-and-build:
name: Test and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.1.34
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Test
run: bun test
- name: Build
run: bun run build