Skip to content

Commit

Permalink
ci: add test run
Browse files Browse the repository at this point in the history
  • Loading branch information
meskill committed Apr 17, 2022
1 parent 4c2ff79 commit fcbcb7d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,19 @@ jobs:
run: yarn
- name: Lint
run: yarn lint

test:
runs-on: ubuntu-20.04
needs: install
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 16
cache: yarn
- name: Install
run: yarn
- name: Test
run: yarn test

0 comments on commit fcbcb7d

Please sign in to comment.