X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=.github%2Fworkflows%2Fmain.yml;h=ae452ab30f4204016d9aed17df5ec40a1d04009a;hb=62bf913822b9607464feb11042a2cfbedca2a9a9;hp=b2340b2446013a3326522c52871bacfd921f5dff;hpb=ec8d1fd4a370c7b38be56c73ca0123ea5d3a652f;p=poolifier.git diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b2340b24..ae452ab3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,4 +1,4 @@ -name: CI +name: Node CI on: [push] @@ -7,11 +7,20 @@ jobs: runs-on: ubuntu-latest + strategy: + matrix: + node-version: [10.x, 12.x] + steps: - uses: actions/checkout@v1 - - name: Run a one-line script - run: echo Hello, world! - - name: Run a multi-line script + - 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: | - echo Add other actions to build, - echo test, and deploy your project. + npm ci + npm run build --if-present + npm run test + env: + CI: true