Add the possibility to add custom fields and hide default inputs (#8) #31
This file contains hidden or 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: CI | |
| on: [workflow_dispatch, push] | |
| jobs: | |
| jest: | |
| name: Jest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js 20.3.1 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.3.1' | |
| cache: 'npm' | |
| - name: Install node dependencies | |
| run: npm install | |
| - name: Run tests | |
| run: npm run test | |
| - name: Action Discord Alert | |
| if: always() | |
| uses: ErnaneJ/action-discord-alerts@main | |
| with: | |
| webhook: ${{ secrets.DISCORD_WEBHOOK }} | |
| status: ${{ job.status }} |