Skip to content

Commit

Permalink
create basic github actions workflow, moving off of circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
TroyAlford committed Jul 1, 2024
1 parent 6d0a8e8 commit 701f50b
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 7 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Pull Request

on:
pull_request:
branches: [develop]

jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun eslint
- run: bun test
- run: bun run build
2 changes: 1 addition & 1 deletion dist/cjs/react-jsx-parser.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cjs/react-jsx-parser.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/es5/react-jsx-parser.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/es5/react-jsx-parser.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/helpers/parseStyle.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare type Style = string | Partial<CSSStyleDeclaration>;
type Style = string | Partial<CSSStyleDeclaration>;
/**
* Converts a CSS Style string
* @param {string | Partial<CSSStyleDeclaration>} style A string to convert, or object to return
Expand Down
2 changes: 1 addition & 1 deletion dist/umd/react-jsx-parser.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/umd/react-jsx-parser.min.js.map

Large diffs are not rendered by default.

0 comments on commit 701f50b

Please sign in to comment.