Skip to content

feat: support max age #76

feat: support max age

feat: support max age #76

Workflow file for this run

name: '🍞 CI - Compatibility'
on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:
jobs:
linux:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
name: Bun
steps:
- name: βž• Actions - Checkout
uses: actions/checkout@v4
- name: βž• Actions - Setup Node.js
uses: actions/setup-node@v4
with:
check-latest: true
node-version: lts/*
- name: βž• Actions - Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 'latest'
- name: βž• Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-linux-${{ hashFiles('package-lock.json') }}
restore-keys: npm-linux-
- name: πŸ“¦ Installing Dependencies
run: npm ci
- name: πŸ§ͺ Checking for Coverage
run: bun run test:bun