fix changeset #150
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout to repository | |
uses: actions/checkout@v4.1.1 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: 1.2.2 | |
- name: Install Dependencies | |
run: bun install --frozen-lockfile --no-cache | |
# Necessary because it's being used in the code | |
- name: Linting/Formating | |
run: bun run lint:ci | |
- name: Build | |
run: bun run build |