Skip to content

prioritize github context for commit and branch #60

prioritize github context for commit and branch

prioritize github context for commit and branch #60

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
name: Validate source code
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
name: Use version ${{ matrix.node-version }}
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Test
run: npm test