Skip to content

Chore(deps): Bump braces from 3.0.2 to 3.0.3 #314

Chore(deps): Bump braces from 3.0.2 to 3.0.3

Chore(deps): Bump braces from 3.0.2 to 3.0.3 #314

name: Build and Test
on:
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Build Project
run: npm run build
- name: Tests
working-directory: package
run: npm run test