Skip to content

Version Packages (#42) #390

Version Packages (#42)

Version Packages (#42) #390

Workflow file for this run

name: adamantite
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
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: types
command: bun run typecheck
- name: analyze
command: bun run analyze
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: ./.github/actions/setup-bun
- name: Run ${{ matrix.name }}
run: ${{ matrix.command }}