Skip to content

add useMessage hook

add useMessage hook #1

Workflow file for this run

name: simple-app run build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
pipeline:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.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 ci --force
- name: build production project
run: npm run build
if: always()
- name: start project
run: npm run start
if: always()