Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Bump express from 4.17.2 to 4.19.2 in /sample #79

Bump express from 4.17.2 to 4.19.2 in /sample

Bump express from 4.17.2 to 4.19.2 in /sample #79

Workflow file for this run

name: Pull request validation
on:
pull_request:
branches: [main]
jobs:
validation:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- name: clear cache
run: yarn cache clean
- name: install
run: yarn
- name: lint
run: yarn lint
- name: check build
run: yarn build
- name: unit tests for the core lib
run: yarn core test
- name: unit tests for the command line interface (cli)
run: yarn components test
- name: unit tests for the plugins
run: yarn express test
- name: integration tests
run: yarn sample test