Skip to content

Added default tool name #437

Added default tool name

Added default tool name #437

Workflow file for this run

name: Build and test
on: [pull_request, push]
jobs:
all:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Typescript check
run: npm run tsc
- name: Vue linter
run: npm run lint:ci
env:
NODE_ENV: production
- name: Build project
run: npm run build
- name: Run tests
run: npm test