Skip to content

Merge pull request #202 from SwaprHQ/develop #825

Merge pull request #202 from SwaprHQ/develop

Merge pull request #202 from SwaprHQ/develop #825

Workflow file for this run

name: Continous Integration
on:
push:
branches:
- main
- production
- develop
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
- production
- develop
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: πŸ§‘πŸ»β€πŸ’» Checkout code
uses: actions/checkout@v4
- name: πŸ₯· Setup node and bun
uses: actions/setup-node@v4
with:
node-version: 21.1.0
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: πŸŽͺ Install dependencies
run: bun install --immutable
- name: πŸ› οΈ Build
run: bun run build
- name: πŸš‘ Typecheck
run: bun typecheck
- name: πŸ”¬ Lint
run: bun lint