wip user ttls #229
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: tests | |
on: [push, workflow_dispatch] | |
jobs: | |
tests: | |
name: tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- name: install bun :3 | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: install dependencies | |
run: bun install --frozen-lockfile | |
- name: lint >:D | |
run: bun lint | |
- name: pretty :o | |
run: bun pretty | |
- name: compile !! | |
run: bun compile |