Skip to content

Commit

Permalink
Update build-embed.yml (#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
Techpurshottam authored Jun 24, 2024
2 parents a8bc75f + 228e5d8 commit 46a5f9e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build-embed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,30 @@ jobs:
packages: write
deployments: write
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Setup kernel for react native, increase watchers
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p

- uses: actions/setup-node@v2
with:
node-version: '20.13.1'

- name: Cache pnpm modules
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v2.0.1
env:
CI: false
with:
version: 8.9.0
run_install: true

- name: Build
run: pnpm run --filter @impler/embed build:prod

Expand Down

0 comments on commit 46a5f9e

Please sign in to comment.