fix build failed

This commit is contained in:
ewfian 2023-06-05 21:40:32 +09:00
parent 2cc6e05426
commit 1b8ca05380
2 changed files with 4 additions and 2 deletions

View File

@ -12,6 +12,7 @@ on:
jobs: jobs:
build: build:
strategy: strategy:
fail-fast: false
matrix: matrix:
platform: [macos-latest, windows-latest, ubuntu-latest] platform: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.platform }} runs-on: ${{ matrix.platform }}

View File

@ -9,9 +9,10 @@ RUN apk add --update libc6-compat
WORKDIR /usr/src/packages WORKDIR /usr/src/packages
# Copy root package.json and lockfile # Copy root package.json
COPY package.json ./ COPY package.json ./
COPY yarn.lock ./ # Conditonal copy lockfile
COPY yarn.loc[k] ./
# Copy components package.json # Copy components package.json
COPY packages/components/package.json ./packages/components/package.json COPY packages/components/package.json ./packages/components/package.json