Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Lailz committed Feb 4, 2020
1 parent dfb748e commit 0655ce7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on: push
name: Main
jobs:
lint-and-test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: test
run: |
yarn install
yarn test --json --outputFile=test.json
- name: send tests
if: always()
run: curl --form "[email protected]" --form username=${{ github.actor }} --form repo=${{ github.repository}} https://warehouse.joincoded.com/github/task/pushed/react/

0 comments on commit 0655ce7

Please sign in to comment.