chore(deps): bump braces from 3.0.2 to 3.0.3 #191
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: | |
pull_request: | |
types: [ opened, synchronize ] | |
push: | |
branches: | |
- main | |
- master | |
- staging | |
- qa | |
- development | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# This needs to match Node version in package.json | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '^18' | |
- name: Install Dependencies | |
run: yarn | |
- name: Run Linter | |
run: yarn run lint |