From c2a0e3c1f79b0f2bf961c0789106a4b6d6237d40 Mon Sep 17 00:00:00 2001 From: el841 <161983861+el841@users.noreply.github.com> Date: Sun, 10 Mar 2024 03:36:28 -0600 Subject: [PATCH] el841 compilers.yml 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 <161983861+el841@users.noreply.github.com> --- .github/workflows/compilers.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index bec69043741648..3360c92524699a 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -1,6 +1,5 @@ -name: Compilations - -on: +name:el841 Compilations +of: push: paths-ignore: - 'doc/**'