chore(deps): update dependency prettier to v3.3.3 #1018
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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' |