Skip to content

Bump next from 13.5.6 to 14.2.15 #330

Bump next from 13.5.6 to 14.2.15

Bump next from 13.5.6 to 14.2.15 #330

Workflow file for this run

name: Pre-Merge Checks
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
workflow_dispatch:
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Clean Install
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test:ci
- name: Build
run: npm run build