Skip to content

deps(deps-dev): bump oxlint-tsgolint from 0.11.5 to 0.13.0 #435

deps(deps-dev): bump oxlint-tsgolint from 0.11.5 to 0.13.0

deps(deps-dev): bump oxlint-tsgolint from 0.11.5 to 0.13.0 #435

Workflow file for this run

name: CI
on:
push:
branches:
- main
- changeset-release/*
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- name: lint
command: bun run check
- name: format
command: bun run format --check
- name: typecheck
command: bun run typecheck
- name: test
command: bun run test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.3
- name: Cache dependencies
uses: actions/cache@v5
with:
path: |
~/.bun/install/cache
node_modules
key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run ${{ matrix.name }}
run: ${{ matrix.command }}