Skip to content

Bump standard from 17.1.0 to 17.1.1 #116

Bump standard from 17.1.0 to 17.1.1

Bump standard from 17.1.0 to 17.1.1 #116

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