Update package-lock.json files #348
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Perftest (base branch cache) | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
jobs: | |
perftest: | |
runs-on: ubuntu-latest | |
env: | |
NPM_REGISTRY_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/prepare-environment | |
- name: Lerna bootstrap | |
run: npx lerna bootstrap --scope=@salutejs/plasma-{core,hope,new-hope,web,b2c,asdk,ui,icons} | |
- name: Install s3cmd | |
run: pip3 install s3cmd | |
- name: Restore perftool cache | |
run: > | |
s3cmd | |
--access_key ${{ secrets.AWS_ACCESS_KEY_ID }} | |
--secret_key ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
--host ${{ secrets.AWS_ENDPOINT }} | |
--host-bucket ${{ secrets.AWS_ENDPOINT }} | |
--bucket-location ${{ secrets.AWS_REGION }} | |
--signature-v2 | |
--no-mime-magic | |
--no-preserve | |
sync | |
s3://${{ secrets.AWS_S3_BUCKET_2 }}/perftool-cache/ | |
./.perftool/cache/ | |
- name: Run performance test | |
run: > | |
npx perftool | |
--currentBranchRef ${{ github.sha }} | |
- name: Save perftool cache | |
run: > | |
s3cmd | |
--access_key ${{ secrets.AWS_ACCESS_KEY_ID }} | |
--secret_key ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
--host ${{ secrets.AWS_ENDPOINT }} | |
--host-bucket ${{ secrets.AWS_ENDPOINT }} | |
--bucket-location ${{ secrets.AWS_REGION }} | |
--signature-v2 | |
--delete-removed | |
--no-mime-magic | |
--no-preserve | |
sync | |
./.perftool/cache/ | |
s3://${{ secrets.AWS_S3_BUCKET_2 }}/perftool-cache/ |