Skip to content

chore(deps): update dependency prettier to v3.3.3 #1018

chore(deps): update dependency prettier to v3.3.3

chore(deps): update dependency prettier to v3.3.3 #1018

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
env:
NODE_ENV: test
CI: true
jobs:
unit-test:
strategy:
matrix:
node-version: [18.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setting node version to ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: '${{ matrix.node-version }}'
- name: Use Yarn cache
uses: actions/cache@v3
id: yarn-cache
with:
path: .yarn/cache
key: ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test --passWithNoTests
env:
NODE_OPTIONS: '--max-old-space-size=8192'