This repository was archived by the owner on Sep 18, 2024. It is now read-only.
Hero Section Button Bg Issue Solved #68 #109
Workflow file for this run
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 |