Skip to content

Commit

Permalink
updates ci
Browse files Browse the repository at this point in the history
  • Loading branch information
pstaender committed Apr 21, 2024
1 parent 2c60e00 commit 7410d78
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/build-and-test.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/build.yml
@@ -0,0 +1,21 @@
name: build-and-test

on: [push]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [ '16.x', '18.x', '20.x' ]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm test
- run: npm run build

0 comments on commit 7410d78

Please sign in to comment.