Skip to content

Commit

Permalink
fix(workflow): add env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
ph1p committed Jul 3, 2022
1 parent 1986515 commit c211a89
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,21 @@ name: Build Figma-Chat

on: [push]

env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
YARN_CHECKSUM_BEHAVIOR: update

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: borales/actions-yarn@v3.0.0

- run: rm yarn.lock
- run: yarn cache clean --all
# - run: rm yarn.lock
- run: yarn install
- run: yarn lint
- run: yarn build:plugin && yarn build:server && yarn build:web
- run: yarn build:plugin
- run: yarn build:server
- run: yarn build:plugin && yarn yarn build:server && yarn yarn build:web

0 comments on commit c211a89

Please sign in to comment.