feat: add typedMemo #113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: linting, testing, building | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
pipeline: | |
runs-on: windows-2019 | |
strategy: | |
matrix: | |
node-version: [ 17.x ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Starting Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: install modules | |
run: npm ci | |
- name: build production project | |
if: always() | |
run: npm run build:prod | |
- name: linting typescript | |
if: always() | |
run: npm run lint:ts | |
- name: linting scss | |
if: always() | |
run: npm run lint:scss | |
- name: unit testing | |
if: always() | |
run: npm run test:unit | |
- name: build storybook | |
if: always() | |
run: npm run storybook:build | |
- name: screenshot testing | |
if: always() | |
run: npm run test:ui:ci |