added feature ChangeArticleListView and save view to localstorage #45
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-latest | |
strategy: | |
matrix: | |
node-version: [ 20.7.0 ] | |
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 --silent --force | |
- name: building production project | |
run: npm run build:prod | |
if: always() | |
- name: linting typescript | |
run: npm run lint:ts | |
if: always() | |
- name: linting scss | |
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() |