Add content and venmo donate button #55
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: | |
pull_request: | |
jobs: | |
lint: | |
name: Lint check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run linter | |
run: npm run lint | |
gulp: | |
name: Gulp compile (you may need to run `gulp compile` and commit changed files if this check fails) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Check for gulp compile changes (you may need to run `gulp compile` and commit changed files if this check fails) | |
run: | | |
gulp compile | |
git diff --no-patch --exit-code |