Skip to content

test: added jest testing library with one test case #4

test: added jest testing library with one test case

test: added jest testing library with one test case #4

Workflow file for this run

name: Ikea CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # 👈 Required to retrieve git history
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- run: npm run validate