Skip to content

Commit

Permalink
(wip) github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lirsacc committed Nov 28, 2023
1 parent 6374349 commit 6ae52ca
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
id: setup-bun
- name: Cache node_modules
uses: actions/cache@v3
with:
path: node_modules/
key: ${{ runner.os }}-${{ steps.setup-bun.bun-version }}-node-modules
- name: Install deps
run: bun install
- name: Check formatting
run: bun run fmt-check
- name: ESLint
run: bun run lint
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
id: setup-bun
- name: Cache node_modules
uses: actions/cache@v3
with:
path: node_modules/
key: ${{ runner.os }}-${{ steps.setup-bun.bun-version }}-node-modules
- name: Install deps
run: bun install
- name: Typecheck
run: bun run typecheck
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
id: setup-bun
- name: Cache node_modules
uses: actions/cache@v3
with:
path: node_modules/
key: ${{ runner.os }}-${{ steps.setup-bun.bun-version }}-node-modules
- name: Install deps
run: bun install
- name: Typecheck
run: bun run buil

0 comments on commit 6ae52ca

Please sign in to comment.