add token and new notifications #21
Workflow file for this run
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: Lint | |
on: | |
push: | |
branches: | |
- 'master' # Default branch | |
pull_request: | |
branches: | |
- 'master' # Default branch | |
permissions: | |
contents: read | |
env: | |
NODE_VERSION: 18 | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
- name: Set up NodeJs | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm install | |
- name: Lint Prettier | |
run: npm run prettier | |
continue-on-error: false | |
- name: Lint ESLint | |
run: npm run eslint | |
continue-on-error: true |