Update deployment script #207
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: Pull Request Validation | |
on: | |
pull_request: | |
branches: | |
- dev | |
- main | |
jobs: | |
basic-checks: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- name: Install dependencies | |
run: npm install | |
# - name: Execute Unit tests | |
# run: | | |
# npm ci | |
# npm install @rollup/rollup-linux-x64-gnu | |
# npm run test:unit | |
- name: Run ESLint | |
run: npm run lint | |
- name: Run TypeScript type checking | |
run: npm run typecheck |