feat: update dependencies and enhance dashboard functionality #30
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: Front Testing Types | |
on: | |
push: | |
branches: ["master", "dev", "feat/*"] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Install dependencies | |
working-directory: ./web | |
run: bun install | |
- name: Lint project | |
working-directory: ./web | |
run: bun run lint | |
- name: Build project | |
working-directory: ./web | |
run: bun run build | |
# - name: Run tests | |
# working-directory: ./web | |
# run: bun run test |