Skip to content

Bump standard from 14.3.4 to 17.1.0 #9

Bump standard from 14.3.4 to 17.1.0

Bump standard from 14.3.4 to 17.1.0 #9

Workflow file for this run

name: CI Test
on:
workflow_call:
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 19.x]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linter
run: yarn run lint
- name: Run tests
run: yarn run testonly