Skip to content

build(deps): bump codecov/codecov-action from 4.6.0 to 5.0.7 (#402) #936

build(deps): bump codecov/codecov-action from 4.6.0 to 5.0.7 (#402)

build(deps): bump codecov/codecov-action from 4.6.0 to 5.0.7 (#402) #936

Workflow file for this run

name: CI for main branch
on:
push:
branches:
- "main"
jobs:
# See https://stackoverflow.com/a/73624365/16109047
build:
runs-on: ubuntu-latest
if: github.repository == 'velut/query-registry' && github.ref == 'refs/heads/main'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v2
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run lint
- name: Test
run: bun run test:ci
- name: Build
run: bun run build
- name: Are the types wrong
run: bun run attw
- name: CodeCov
uses: codecov/codecov-action@v5.0.7
with:
token: ${{ secrets.CODECOV_TOKEN }}