Skip to content

Commit

Permalink
improve github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
axelpale committed Jan 8, 2024
1 parent 6fb5c9c commit 9b64d75
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 13 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/genversion-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Genversion CI
run-name: ${{ github.actor }} is testing genversion

on: [push]

jobs:
test-genversion:
runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm test
13 changes: 0 additions & 13 deletions .github/workflows/test-genversion.yml

This file was deleted.

0 comments on commit 9b64d75

Please sign in to comment.