Skip to content

Ensure certain paths are always in gitignore #1

Ensure certain paths are always in gitignore

Ensure certain paths are always in gitignore #1

Workflow file for this run

name: Test
on: [pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
- name: Run compiler
run: yarn compile
- name: Run tests
run: yarn test:coverage
notify:
name: Notify Discord
runs-on: ubuntu-latest
if: ${{ always() }} # You always want to be notified: success, failure, or cancelled
needs:
- build
steps:
- name: Notify
uses:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
discord-webhook: ${{ secrets.DISCORD_WEBHOOK }}