[FEATURE]: Comment on PRs with webhook URL for feature branch #1119
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
# Checks for changes outside of /modules directory | |
changes: | |
runs-on: ubuntu-latest | |
outputs: | |
autobuilder: ${{ steps.filter.outputs.autobuilder }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
# set autobuilder filter true | |
# if any changes outside of modules directory | |
filters: | | |
autobuilder: | |
- '!(modules/**)' | |
test: | |
needs: changes | |
if: ${{ needs.changes.outputs.autobuilder == 'true' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '18.x' | |
- name: Install dependencies | |
run: npm install --dev | |
- name: Lint | |
run: npm run lint && npm run format | |
- name: Test | |
run: npm test |