Skip to content

Update packages to handle security alerts #86

Update packages to handle security alerts

Update packages to handle security alerts #86

Workflow file for this run

name: Build & test
on: [push]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x, 16.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm i
- name: Build plugin
run: npm run build
- name: Run tests
run: npm test