From 89fb4f911093d5a3411da3d885f510710d5c57b1 Mon Sep 17 00:00:00 2001 From: John Date: Tue, 7 May 2024 12:10:31 -0500 Subject: [PATCH] remove --frozen-lockfile in solana-native.yml --- .github/workflows/solana-native.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/solana-native.yml b/.github/workflows/solana-native.yml index a8a57605..99da779a 100644 --- a/.github/workflows/solana-native.yml +++ b/.github/workflows/solana-native.yml @@ -2,12 +2,12 @@ name: Native on: schedule: - - cron: '0 0 * * *' + - cron: "0 0 * * *" push: branches: - main pull_request: - types: [ opened, synchronize, reopened ] + types: [opened, synchronize, reopened] branches: - main @@ -119,7 +119,7 @@ jobs: Testing $projectDir ********" cd $projectDir - pnpm install --frozen-lockfile + pnpm install if (cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./tests/fixtures && pnpm test); then echo "Tests succeeded for $projectDir." else