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

Bump diff from 5.2.0 to 6.0.0 #114

Bump diff from 5.2.0 to 6.0.0

Bump diff from 5.2.0 to 6.0.0 #114

Workflow file for this run

name: Tape
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Node install
run: npm ci
- name: Lint
run: npm run lint
- name: Unit tests
run: npm run test