Skip to content

Bump braces from 3.0.2 to 3.0.3 #78

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #78

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: ☢ tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- name: 📚 checkout
uses: actions/checkout@v3
with:
submodules: 'true'
- name: 🟢 node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install ## ci is not enough on node 14.x
- run: npm run build --if-present
- name: ☢ tests
run: npm test