Skip to content

Commit

Permalink
el841 compilers.yml
Browse files Browse the repository at this point in the history
jobs:
  test:
    name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        node_version: ['8', '10', '12']
        os: [ubuntu-latest, windows-latest, macOS-latest]

    steps:
    - uses: actions/checkout@v1
    - name: Use Node.js ${{ matrix.node_version }}
      uses: actions/setup-node@v1
      with:
        node-version: ${{ matrix.node_version }}

    - name: npm install, build and test
      run: |
        npm install
        npm run build --if-present
        npm test

Signed-off-by: el841 <[email protected]>
  • Loading branch information
el841 authored Mar 10, 2024
1 parent f4eab66 commit c2a0e3c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/compilers.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: Compilations

on:
name:el841 Compilations
of:
push:
paths-ignore:
- 'doc/**'
Expand Down

0 comments on commit c2a0e3c

Please sign in to comment.