Skip to content

Commit

Permalink
Simplify testing CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
benefacto committed Jan 13, 2024
1 parent cef924c commit a4800df
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,16 @@ name: API tests

on:
push:
pull_request:
branches:
- '**'

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: 21
- run: yarn install
- run: yarn test

0 comments on commit a4800df

Please sign in to comment.