Skip to content

add README.md, LICENSE and version of Node in package.json #5

add README.md, LICENSE and version of Node in package.json

add README.md, LICENSE and version of Node in package.json #5

Workflow file for this run

name: linting, testing, building
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
pipeline:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.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
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
- name: unit testing
if: always()
run: npm run test:unit
- name: build storybook
run: npm run storybook:build
if: always()