Improving docs and more #189
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: Pull Request Checks | |
on: [pull_request] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
check-latest: true | |
- run: npm i -g [email protected] | |
- name: npm install | |
run: npm ci | |
- run: npm run lint:prod | |
ci: | |
name: CI | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
check-latest: true | |
- run: npm i -g [email protected] | |
- name: npm install | |
run: npm ci | |
- run: npm run build | |
- run: npm test --if-present | |
autosquash: | |
name: Block Autosquash Commits | |
runs-on: ubuntu-latest | |
steps: | |
- name: Block Autosquash Commits | |
uses: xt0rted/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |