Skip to content

Added article entity with block components for code, images, text and… #47

Added article entity with block components for code, images, text and…

Added article entity with block components for code, images, text and… #47

name: testing, linting, building
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
Pipeline:
runs-on: macos-latest
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 install
- name: build 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: building storybook
run: npm run storybook:build
if: always()
- name: ui testing
run: brew install graphicsmagick && npx loki --requireReference update --reactUri file:./storybook-static
if: always()