Skip to content

Bump tough-cookie from 4.1.2 to 4.1.3 #153

Bump tough-cookie from 4.1.2 to 4.1.3

Bump tough-cookie from 4.1.2 to 4.1.3 #153

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: 14.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: 14.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: 14.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: 14.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