Skip to content

Merge pull request #253 from dasuni-30/fix/252 #157

Merge pull request #253 from dasuni-30/fix/252

Merge pull request #253 from dasuni-30/fix/252 #157

Workflow file for this run

# Copyright (c) 2020, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
#
# WSO2 Inc. licenses this file to you under the Apache License,
# Version 2.0 (the "License"); you may not use this file except
# in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# This workflow builds the pushes to the master branch and bumps the version.
name: Builder
on:
push:
branches:
- master
paths-ignore:
- '**/package.json'
- '**/yarn.lock'
- 'lerna.json'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
yarn install --frozen-lockfile
yarn build