introduce admin users with elevated priviledges #423
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: Static Code Analysis | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- packages/** | |
pull_request: | |
branches: [ master ] | |
paths: | |
- packages/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout GIT repository | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Update NPM | |
run: npm install -g npm@latest | |
- name: Install dependencies | |
run: npm install | |
- name: Build sources | |
run: npm run build | |
- name: Lint sources | |
run: npm run lint |