Skip to content

o-date-input min and max inputs #4

o-date-input min and max inputs

o-date-input min and max inputs #4

Workflow file for this run

name: Build CI
on:
pull_request:
types: [closed]
branches: [8.x.x, hotfix/8.*]
paths: ['src/**']
jobs:
build:
if: github.event_name == 'pull_request' && github.event.pull_request.merged == true
runs-on: ubuntu-20.04
steps:
- name: 'Checkout code'
uses: actions/checkout@v2
- name: 'Cache node modules'
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node 12.x
uses: actions/setup-node@v1
with:
node-version: 12.13.0
- name: npm install and npm run build
run: |
npm i
npm run build