diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index da235b6..c7937ad 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -1,7 +1,7 @@ # 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://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions -name: Node.js CI +name: CI on: push: @@ -11,24 +11,31 @@ on: jobs: build_nodejs: - runs-on: ubuntu-latest - + strategy: matrix: node-version: [14.x, 16.x, 18.x, 19.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - + steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: npm ci - - run: npm run build --if-present - - run: npm test + - uses: actions/checkout@v3 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + + - name: Provisioning + run: | + docker --version + node -v + docker pull ubuntu + + - name: NPM install + run: npm install + + - name: Nodejs Tests + run: npm test build_bun: runs-on: ubuntu-latest