Skip to content

Bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group across 1 directory #276

Bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group across 1 directory

Bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group across 1 directory #276

name: Build & Test
on:
pull_request:
branches:
- master
- alpha
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Use Node.js 20.x
uses: actions/setup-node@v1
with:
node-version: 20.x
- name: npm ci
run: |
npm ci
env:
CI: true
- name: npm build & test
run: |
npm run build
npm run test
env:
CI: true