Skip to content

chore: prep for move to procore-oss github organization #4

chore: prep for move to procore-oss github organization

chore: prep for move to procore-oss github organization #4

Workflow file for this run

name: Test
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
node: ['18', '20', '21']
name: Node ${{ matrix.node }}
# https://docs.github.com/en/actions/learn-github-actions/expressions#example
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node}}
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run tests with coverage
run: yarn test:coverage