diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/semifold-ci.yaml | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/.github/workflows/semifold-ci.yaml b/.github/workflows/semifold-ci.yaml index fdcc35a..b635e41 100644 --- a/.github/workflows/semifold-ci.yaml +++ b/.github/workflows/semifold-ci.yaml @@ -2,6 +2,8 @@ name: Semifold CI on: push: branches: [main] + pull_request: + branches: [main] env: CLICOLOR_FORCE: 1 @@ -131,19 +133,19 @@ jobs: - name: List Files run: ls -l src-tauri/target/release - release: - name: Release - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v6 - with: - fetch-depth: 0 - - name: Setup Semifold - uses: noctisynth/setup-semifold@main - - name: Semifold CI - run: semifold ci - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} - NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} + # release: + # name: Release + # runs-on: ubuntu-latest + # steps: + # - name: Checkout + # uses: actions/checkout@v6 + # with: + # fetch-depth: 0 + # - name: Setup Semifold + # uses: noctisynth/setup-semifold@main + # - name: Semifold CI + # run: semifold ci + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} + # NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} |