Skip to content

Removed jest, updated node, and fixed vue-tsc by upgrading TypeScript… #204

Removed jest, updated node, and fixed vue-tsc by upgrading TypeScript…

Removed jest, updated node, and fixed vue-tsc by upgrading TypeScript… #204

Workflow file for this run

on:
push:
branches: ['*']
pull_request:
branches: ['*']
name: Code quality
jobs:
vue-tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: npm ci
- name: Run vue-tsc
run: npm run analyze
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: npm ci
- name: Run vue-tsc
run: npm run lint
# jest:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: 18.x
# - name: Install dependencies
# run: npm ci
# - name: Run vue-tsc
# run: npm run test
test-infrastructure:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Create folder for testing
run: mkdir dist
- name: Install dependencies
run: cd infrastructure && npm ci
- name: Run vue-tsc
run: cd infrastructure && npm run test