Skip to content

build(deps-dev): bump webpack from 5.69.1 to 5.76.0 in /cli #48

build(deps-dev): bump webpack from 5.69.1 to 5.76.0 in /cli

build(deps-dev): bump webpack from 5.69.1 to 5.76.0 in /cli #48

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 layout components
run: yarn layout test
- name: unit tests for the plugins
run: yarn express test
- name: integration tests
run: yarn sample test