Skip to content

Bump braces from 3.0.2 to 3.0.3 #9

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #9

Workflow file for this run

name: Build
on:
push:
branches: ['master']
pull_request:
branches: ['master']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- name: Chekout
uses: actions/checkout@v3
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test