Skip to content

Merge pull request #1 from clocklimited/feat/upgrade-lodash #7

Merge pull request #1 from clocklimited/feat/upgrade-lodash

Merge pull request #1 from clocklimited/feat/upgrade-lodash #7

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn install
- name: Run Tests
run: yarn test