Skip to content

chore: updated package-lock.json #21

chore: updated package-lock.json

chore: updated package-lock.json #21

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['18']
name: Node ${{ matrix.node }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm install
- name: Build and Test
run: npm run prepublishOnly