Skip to content

Bump braces from 3.0.2 to 3.0.3 #35

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #35

Workflow file for this run

name: Continuous tests
on:
push:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
name: Build and test
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install
run: npm install
- name: Run Tests
run: npm run test