Skip to content

Commit

Permalink
Setup on pull request script (#838)
Browse files Browse the repository at this point in the history
* Setup tests on pull request to development
  • Loading branch information
arhtudormorar committed Jun 19, 2023
1 parent c9759c1 commit 7b4d662
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run tests

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v1
with:
node-version: 16
registry-url: https://registry.npmjs.org/

- name: Setup yarn
run: npm install -g yarn

- name: Install dependencies
run: yarn install

- name: Run tests
run: yarn test
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
## [[v2.15.0]](https://github.com/multiversx/mx-sdk-dapp/pull/835)] - 2023-06-19
- [Added `on-pull-request.yml` script](https://github.com/multiversx/mx-sdk-dapp/pull/838)
- [Changed local native auth service with mx-sdk-js-native-auth-client package](https://github.com/multiversx/mx-sdk-dapp/pull/837)
- [Changed usage of `dataTestid` to `data-testid`](https://github.com/multiversx/mx-sdk-dapp/pull/836)

Expand Down

0 comments on commit 7b4d662

Please sign in to comment.