fix(generator): Fixes the generator not being able to import the @can… #46
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: Main branch update | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build and test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Setup environment | |
uses: ./.github/actions/setup-env | |
- name: Code quality checks | |
run: bun run check | |
- name: Test | |
run: bun run test |