Skip to content

change backend

change backend #32

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: Staring 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:fix
if: always()
- name: linting scss
run: npm run lint:scss:fix
if: always()
- name: unit testing
run: npm run unit
if: always()