Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ jobs:
run: bun lint

- name: Run Unit Tests
run: bun run test
run: bun test

- name: Package
run: bun package

- name: Compare the expected and actual dist/ directories
run: |
if [[ $(git status --porcelain) ]]; then
echo "Detected uncommitted changes after build. Please run npm run package and commit the changes!"
echo "Detected uncommitted changes after build. Please run bun package and commit the changes!"
git status
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ where "my-new-feature" describes what you're working on.
This script will install all dependencies for local development.

```shell
npm run setup
bun setup
```

### 4. If you are creating a new helper

```shell
npm run create-helper
bun create-helper
```

### 5. Add tests for any bug fixes or new functionality

All functions must be tested with a unit test. Please follow the existing convention of one exported function per file with a corresponding file to test it. Run tests using `npm run test`, or using the [Jest CLI](https://jestjs.io/docs/cli).
All functions must be tested with a unit test. Please follow the existing convention of one exported function per file with a corresponding file to test it. Run tests using `bun test`.

There are also integration tests present in the [workflow](./.github/workflows) directory, which will actually run each Github Action using the code from this repository. This allows you to test your changes right within the pull request you make.

Expand Down
1,057 changes: 30 additions & 1,027 deletions bun.lock

Large diffs are not rendered by default.

36 changes: 15 additions & 21 deletions dist/110.index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/110.index.js.map

Large diffs are not rendered by default.

25 changes: 10 additions & 15 deletions dist/208.index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading