Skip to content

feat: tmp

feat: tmp #13109

Workflow file for this run

name: Run Jest tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout latest code
uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16
- name: Restore/create node_modules cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install repository
run: yarn install --frozen-lockfile
- name: Build BDD covered packages and dependencies
run: yarn workspace @ovh-ux/manager-container-app start
- name: Run tests
run: yarn test:jest