Skip to content

Commit

Permalink
github action fix
Browse files Browse the repository at this point in the history
  • Loading branch information
farskipper committed Nov 11, 2023
1 parent 9b54fc1 commit 5108ea0
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
name: Test

on: push

on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
node-version:
node:
- lts/*
- "*"
- current
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
- uses: actions/checkout@v2
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
- uses: actions/checkout@v3
- name: Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

node-version: ${{ matrix.node }}
- run: npm install
- run: npm test

0 comments on commit 5108ea0

Please sign in to comment.