[Snyk] Security upgrade pillow from 9.5.0 to 10.2.0 #286
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
# Jobs to lint entire typescript base | |
name: Linting | |
# For both dev pushes and MRs to main | |
on: | |
push: | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
# Ubuntu image for runner | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Npm Lint script | |
run: pwd && ls && npm i && npm run lint | |