This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
Cleanup documentation #167
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: "Install" | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
# install bun | |
- uses: oven-sh/setup-bun@v1 | |
- uses: actions/checkout@v2 | |
- name: bun version | |
run: bun -v | |
- name: install dependencies | |
run: bun install |