Skip to content

fix: merge issue

fix: merge issue #111

Workflow file for this run

name: Merge
on:
push:
branches: [ master,development,staging ]
# pull_request:
# branches:
# - '**'
jobs:
build:
name: Merge Check
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: install
run: npm install
- name: build
run: npm run build