tobiasnteireho is testing the a2jdeps #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-test | |
run-name: ${{ github.actor }} is testing the a2jdeps | |
on: [push] | |
jobs: | |
test-author-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- run: npm install | |
- uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: npm run test | |
- uses: "8398a7/action-slack@v3" | |
with: | |
status: ${{ job.status }} | |
fields: "repo,message,commit,author,action,eventName,ref,workflow,job,took,pullRequest" | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
if: always() # Pick up events even if the job fails or is canceled. | |