Skip to content

add lazy loading for login form, add reducer manager #34

add lazy loading for login form, add reducer manager

add lazy loading for login form, add reducer manager #34

Workflow file for this run

name: linting, testing, building
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pipeline:
runs-on: ubuntu-lasted
strategy:
matrix:
node-version: [ 16.x ]
steps:
- uses: actions/checkout@v2
- name: Staring Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install modules
run: npm install -f
- name: build production project
run: npm run build:prod
if: always()
- name: linting typescript
run: npm run lint:ts
if: always()
- name: linting css
run: npm run lint:css
if: always()
- name: unit testing
run: npm run test:unit
if: always()
- name: build storybook
run: npm run storybook:build
if: always()
- name: screenshot testing
run: npm run test:ui:ci
if: always()