diff --git a/.github/workflows/ci-cd.yaml b/.github/workflows/ci-cd.yaml index 59765f7..c0023d5 100644 --- a/.github/workflows/ci-cd.yaml +++ b/.github/workflows/ci-cd.yaml @@ -13,6 +13,22 @@ env: DOCKER_BUILDKIT: 1 jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + node: [ 18 ] + name: Node ${{ matrix.node }} sample + steps: + - uses: actions/checkout@v4 + - name: Setup node + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node }} + cache: 'yarn' + - run: yarn install --frozen-lockfile + - run: yarn test:ci + images: runs-on: ubuntu-latest if: github.event_name == 'push' && github.repository == 'aulasoftwarelibre/codex' && (startsWith(github.ref, 'refs/heads/releases/') || startsWith(github.ref, 'refs/tags/v') )