Skip to content

Update react-router-dom to version 6.28.0 #47

Update react-router-dom to version 6.28.0

Update react-router-dom to version 6.28.0 #47

Workflow file for this run

name: linting, testing, building
on: [push]
jobs:
pipeline:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 17.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
- 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:scss
if: always()
- name: unit testing
run: npm run test:unit
if: always()
- name: build storybook
run: npm run storybook:build
if: always()
- name: delete screenshot ansys project
run: npm run delete:scr
if: always()