Skip to content

famovkin is testing out GitHub Actions πŸš€ #37

famovkin is testing out GitHub Actions πŸš€

famovkin is testing out GitHub Actions πŸš€ #37

Workflow file for this run

name: linting, testing, building
run-name: ${{ github.actor }} is testing out GitHub Actions πŸš€
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
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: 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 css
run: npm run stylelint: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
run: npm run test:ui:ci