Skip to content

Commit

Permalink
Update pull request script
Browse files Browse the repository at this point in the history
  • Loading branch information
arhtudormorar committed Jun 19, 2023
1 parent c249d98 commit fdd7dac
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .github/on-pull-request.yml

This file was deleted.

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

0 comments on commit fdd7dac

Please sign in to comment.