Skip to content

Commit

Permalink
update github action configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
con-cis committed Oct 11, 2023
1 parent 1c84235 commit cf7e432
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: MC Docu CI

on:
Expand All @@ -12,15 +9,14 @@ on:
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 1
timeout-minutes: 5
continue-on-error: ${{ matrix.experimental }}

strategy:
fail-fast: false
fail-fast: true
max-parallel: 2
matrix:
node-version: [14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [16.x, 18.x, 20.x]
experimental: [false]
os: [macos-latest, ubuntu-latest, windows-latest]

Expand All @@ -40,6 +36,6 @@ jobs:
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: release_on_${{ matrix. os }}
name: release_on_${{ matrix.os }}
path: release/
retention-days: 5
retention-days: 5

0 comments on commit cf7e432

Please sign in to comment.