diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 1249718..b9215af 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -1,6 +1,8 @@ +# Testing Script +# name: Tests CI -on: push - branches: [ master ] +on: [ push ] +branches: [ master ] jobs: test: runs-on: ubuntu-latest @@ -10,24 +12,28 @@ jobs: uses: actions/setup-node@v1 with: node-version: '12' - - run: yarn install - - run: yarn test:ci - - name: Tests ✅ - if: ${{ success() }} - run: | - curl --request POST --url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.sha }} --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' --header 'content-type: application/json' --data '{ - "context": "tests", - "state": "success", - "description": "Tests passed", - "target_url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" - }' - - name: Tests 🚨 - if: ${{ failure() }} - run: | - curl --request POST --url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.sha }} --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' --header 'content-type: application/json' --data '{ - "context": "tests", - "state": "failure", - "description": "Tests failed", - "target_url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" - }' + -run: npm ci + -run: npm test + -run: npm run build + +# - run: yarn install +# - run: yarn test:ci +# - name: Tests ✅ +# if: ${{ success() }} +# run: | +# curl --request POST --url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.sha }} --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' --header 'content-type: application/json' --data '{ +# "context": "tests", +# "state": "success", +# "description": "Tests passed", +# "target_url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" +# }' +# - name: Tests 🚨 +# if: ${{ failure() }} +# run: | +# curl --request POST --url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.sha }} --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' --header 'content-type: application/json' --data '{ +# "context": "tests", +# "state": "failure", +# "description": "Tests failed", +# "target_url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" +# }'