Skip to content

Commit

Permalink
chore: standardize workflows (#172)
Browse files Browse the repository at this point in the history
* chore: standardize workflows

* test: aggregate matrix
  • Loading branch information
jpoehnelt authored Jul 21, 2022
1 parent 928ef4e commit 89e80a5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: CI
name: Test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
on: [push, pull_request, workflow_dispatch]

jobs:
build:
matrix:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -24,4 +20,8 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test

test:
needs: [matrix]
runs-on: ubuntu-latest
steps:
- run: echo "Test matrix finished"

0 comments on commit 89e80a5

Please sign in to comment.