feat: ♻️ rename s3mini
to S3mini
and add deprecated alias
#44
Workflow file for this run
This file contains hidden or 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: Test:e2e(all) | |
on: | |
push: | |
branches: [dev] | |
pull_request_target: | |
branches: [dev] | |
env: | |
BUCKET_ENV_BACKBLAZE: ${{ secrets.BUCKET_ENV_BACKBLAZE }} | |
BUCKET_ENV_MINIO: ${{ secrets.BUCKET_ENV_MINIO }} | |
BUCKET_ENV_CLOUDFLARE: ${{ secrets.BUCKET_ENV_CLOUDFLARE }} | |
BUCKET_ENV_DIGITALOCEAN: ${{ secrets.BUCKET_ENV_DIGITALOCEAN }} | |
BUCKET_ENV_GARAGE: ${{ secrets.BUCKET_ENV_GARAGE }} | |
BUCKET_ENV_CEPH: ${{ secrets.BUCKET_ENV_CEPH }} | |
BUCKET_ENV_ORACLE: ${{ secrets.BUCKET_ENV_ORACLE }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 0 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check Docker version | |
run: docker --version && docker compose version | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm install | |
- name: Build project | |
run: npm run build | |
- name: Run e2e tests | |
uses: nick-fields/retry@v3.0.0 | |
with: | |
max_attempts: 3 | |
retry_on: any | |
timeout_minutes: 5 | |
retry_wait_seconds: 20 | |
command: npm run test:e2e | |
env: | |
BUCKET_ENV_BACKBLAZE: ${{ secrets.BUCKET_ENV_BACKBLAZE }} | |
BUCKET_ENV_CLOUDFLARE: ${{ secrets.BUCKET_ENV_CLOUDFLARE }} | |
BUCKET_ENV_DIGITALOCEAN: ${{ secrets.BUCKET_ENV_DIGITALOCEAN }} | |
BUCKET_ENV_GARAGE: ${{ secrets.BUCKET_ENV_GARAGE }} | |
BUCKET_ENV_MINIO: ${{ secrets.BUCKET_ENV_MINIO }} | |
BUCKET_ENV_CEPH: ${{ secrets.BUCKET_ENV_CEPH }} | |
BUCKET_ENV_ORACLE: ${{ secrets.BUCKET_ENV_ORACLE }} |