Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

fix: lock

fix: lock #43

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x]
platform:
- os: ubuntu-latest
- os: macos-latest
- os: windows-latest
runs-on: ${{ matrix.platform.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v1.1.0
- name: Use Nodejs ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
# Run for all environments
- name: Run Tests
run: npm test