Skip to content

Update deployment script #207

Update deployment script

Update deployment script #207

Workflow file for this run

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