Skip to content

Fix Yarn Test CI

Fix Yarn Test CI #3

name: Super DevSecOps Pipeline
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Checkout Repository to Runner Context
uses: actions/checkout@v3
- name: Use Node version ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: |
yarn install
test:
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Checkout Repository to Runner Context
uses: actions/checkout@v3
- name: Use Node version ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: |
yarn install
yarn test