update lfs ci #317
Workflow file for this run
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: E2E tests | |
on: | |
push: | |
branches: [ "develop"] | |
pull_request: | |
branches: [ "develop"] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: Configure Git credentials for custom Git server | |
run: | | |
git config --global credential.helper store | |
echo "https://${{ secrets.LFS_S3_USER }}:${{ secrets.LFS_S3_SECRET }}@bguaey6s9d.execute-api.us-west-1.amazonaws.com" > ~/.git-credentials | |
- name: Pull LFS files | |
run: | | |
git config lfs.url https://bguaey6s9d.execute-api.us-west-1.amazonaws.com/common | |
git lfs pull | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '21.x' | |
- name: Run e2e tests | |
run: make e2e_test |