Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

fix(deps): update nuxtjs monorepo to v3.8.0 #1381

fix(deps): update nuxtjs monorepo to v3.8.0

fix(deps): update nuxtjs monorepo to v3.8.0 #1381

Workflow file for this run

name: Unit Test
on: [push]
jobs:
unit-test:
runs-on: ubuntu-latest
name: Test
env:
NODE_OPTIONS: --max-old-space-size=6144
steps:
- uses: actions/checkout@v4
- name: Cache Nx
uses: actions/cache@v3
with:
path: node_modules/.cache/nx
key: cache-nx-${{ hashFiles('yarn.lock') }}-${{ github.sha }}
restore-keys: |
cache-nx-${{ hashFiles('yarn.lock') }}-
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: yarn
- run: yarn install --inline-builds
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: yarn build
- run: yarn test