Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Robonau committed Nov 11, 2023
1 parent 580c1e5 commit 6489325
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
4 changes: 1 addition & 3 deletions .github /workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@
name: Build
on:
push:
branches:
- "main"
- "Release"
branches: ["main", "Release"]
defaults:
run:
shell: bash
Expand Down
16 changes: 5 additions & 11 deletions .github /workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,20 @@ name: Lint

on:
push:
branches:
- "main"
- "Release"
branches: ["main", "Release"]
pull_request:
branches:
- "main"
- "Release"
branches: ["main", "Release"]

jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- uses: actions/checkout@v3
- name: Use bun 1.0.10
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install bun dependencies
run: bun i
- name: Run linters
run: |
bun run lint
run: bun run lint

0 comments on commit 6489325

Please sign in to comment.