Skip to content

build(deps): bump braces from 3.0.2 to 3.0.3 #6

build(deps): bump braces from 3.0.2 to 3.0.3

build(deps): bump braces from 3.0.2 to 3.0.3 #6

Workflow file for this run

name: Test
on:
pull_request:
paths:
- src/**
- test/**
- package.json
- yarn.lock
workflow_call:
jobs:
jest:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run Jest test suite
run: yarn test