Skip to content

Changes 8.x.x to 15.x.x #14

Changes 8.x.x to 15.x.x

Changes 8.x.x to 15.x.x #14

Workflow file for this run

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