Skip to content

Commit

Permalink
docs(readme.md): add Healthcheck badge
Browse files Browse the repository at this point in the history
  • Loading branch information
Dwlad90 committed Dec 23, 2024
1 parent 51e350d commit ce0c5d1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,21 @@ on:
- '**/*.gitignore'
- .editorconfig
- docs/**
push:
branches:
- develop

env:
APP_NAME: 'rs-compiler'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.ref }}
cancel-in-progress: true

jobs:
lint:
name: Lint code
if: github.event.pull_request.draft == false
if: github.event.pull_request.number == null || !github.event.pull_request.draft
runs-on: ubuntu-latest

steps:
Expand All @@ -39,7 +43,7 @@ jobs:

format:
name: Format code
if: github.event.pull_request.draft == false
if: github.event.pull_request.number == null || !github.event.pull_request.draft
runs-on: ubuntu-latest

steps:
Expand All @@ -54,7 +58,7 @@ jobs:

test:
name: Run tests
if: github.event.pull_request.draft == false
if: github.event.pull_request.number == null || !github.event.pull_request.draft
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# StyleX in Rust · [![GitHub license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/Dwlad90/stylex-swc-plugin/blob/master/LICENSE) [![npm version](https://img.shields.io/npm/v/@stylexswc/swc-plugin.svg?style=flat)](https://www.npmjs.com/package/@stylexswc/swc-plugin) ![GitHub tag check runs](https://img.shields.io/github/check-runs/Dwlad90/stylex-swc-plugin/0.5.1?label=Release%20status)
# StyleX in Rust · [![GitHub license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/Dwlad90/stylex-swc-plugin/blob/master/LICENSE) [![npm version](https://img.shields.io/npm/v/@stylexswc/swc-plugin.svg?style=flat)](https://www.npmjs.com/package/@stylexswc/swc-plugin) ![GitHub tag check runs](https://img.shields.io/github/check-runs/Dwlad90/stylex-swc-plugin/0.5.1?label=Release%20status) ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/Dwlad90/stylex-swc-plugin/pr-validation.yml?branch=develop&label=Project%20Health)

This is a monorepo for an unofficial [`napi-rs`](https://napi.rs/) compiler and
an [SWC](https://swc.rs/) plugin for
Expand Down

0 comments on commit ce0c5d1

Please sign in to comment.