Skip to content

add selectors tests #26

add selectors tests

add selectors tests #26

Workflow file for this run

name: linting, testing, building
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pipeline:
runs-on: ubuntu-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: npm install
run: npm install
- name: build production project
run: npm run build:prod
- 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()
- name: screenshot testing with LOKI
run: npm run test:ui:ci
if: always()