Skip to content

Commit

Permalink
fix: pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
bebrasmell committed Jul 30, 2024
1 parent c9209b6 commit 428bea6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/badge.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Perform linting
name: Create badges

on:
push:
Expand All @@ -7,7 +7,7 @@ on:
- develop

jobs:
jest:
create-badge:
runs-on: ubuntu-latest
steps:
# Checkout
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-pr.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test PR
name: Test Pull Request

on:
pull_request:
Expand All @@ -7,7 +7,7 @@ on:
- branchname

jobs:
jest:
test:
runs-on: ubuntu-latest
steps:
# Checkout
Expand All @@ -27,7 +27,7 @@ jobs:
# Run tests
- name: Test
run: yarn test
biome:
lint:
runs-on: ubuntu-latest
steps:
- name: Lint
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Perform linting
name: Lint

on:
workflow_call:
Expand All @@ -8,7 +8,7 @@ on:
- develop

jobs:
biome:
lint:
runs-on: ubuntu-latest
steps:
# Checkout
Expand All @@ -23,7 +23,7 @@ jobs:

# Install biome
- name: Install Biome
run: yarn install @biomejs/biome
run: yarn add --dev @biomejs/biome

# Run linter
- name: Lint
Expand Down

0 comments on commit 428bea6

Please sign in to comment.