Update Socket Slack app required scopes #844
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: Code quality checker | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ "main" ] | |
jobs: | |
qa-checker: | |
name: Check TS & ESLint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
uses: volta-cli/action@v4 | |
- run: npm install | |
- name: Check typescript | |
run: npm run tsc | |
- name: Lint and format code | |
run: npm run lint | |
- name: Build | |
run: npm run build |