Skip to content

chore(deps): upgrade runtime deps to clear all known security alerts … #84

chore(deps): upgrade runtime deps to clear all known security alerts …

chore(deps): upgrade runtime deps to clear all known security alerts … #84

Workflow file for this run

name: test-env
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-save:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Build
shell: bash
run: npm install -g yarn && yarn install --pure-lockfile && yarn build
- name: Generate files in working directory
shell: bash
run: src/create-cache-files.sh ${{ runner.os }} test-cache
- name: Generate files outside working directory
shell: bash
run: src/create-cache-files.sh ${{ runner.os }} ~/test-cache
- name: Save cache
uses: ./
env:
AWS_ACCESS_KEY_ID: ${{ secrets.ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SECRET_KEY }}
# AWS_SESSION_TOKEN: "xxx"
AWS_REGION: "us-east-1"
with:
endpoint: ${{ secrets.ENDPOINT }}
bucket: ${{ secrets.BUCKET }}
use-fallback: false
key: test-${{ runner.os }}-${{ github.run_id }}
path: |
test-cache
~/test-cache
test-restore:
needs: test-save
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Build
shell: bash
run: npm install -g yarn && yarn install --pure-lockfile && yarn build
- name: Restore cache
id: restore
uses: ./
env:
AWS_ACCESS_KEY_ID: ${{ secrets.ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SECRET_KEY }}
# AWS_SESSION_TOKEN: "xxx"
AWS_REGION: "us-east-1"
with:
endpoint: ${{ secrets.ENDPOINT }}
bucket: ${{ secrets.BUCKET }}
key: test-${{ runner.os }}-${{ github.run_id }}
path: |
test-cache
~/test-cache
- name: Verify cache-matched-key output
if: steps.restore.outputs.cache-hit == 'true'
shell: bash
env:
CACHE_MATCHED_KEY: ${{ steps.restore.outputs.cache-matched-key }}
EXPECTED_KEY: test-${{ runner.os }}-${{ github.run_id }}
run: |
if [ "$CACHE_MATCHED_KEY" != "$EXPECTED_KEY" ]; then
echo "cache-matched-key mismatch: got '$CACHE_MATCHED_KEY', expected '$EXPECTED_KEY'"
exit 1
fi
- name: Verify cache files in working directory
shell: bash
run: src/verify-cache-files.sh ${{ runner.os }} test-cache
- name: Verify cache files outside working directory
shell: bash
run: src/verify-cache-files.sh ${{ runner.os }} ~/test-cache