enables addpasskey and addauthenticator #1058
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: Build | |
on: [push] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
node: ["20.x"] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Set up node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "npm" | |
- name: Install dependencies | |
run: npm install | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run test | |
- name: Build | |
run: npm run build | |
- name: Pack and build example | |
if: github.ref == 'refs/heads/master' | |
run: | | |
cd examples/vue-example | |
npm install | |
npm run build | |
# Set the credentials from repository settings/secrets | |
- name: Configure AWS credentials | |
if: github.ref == 'refs/heads/master' | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.AWS_REGION_US }} | |
# Copy the files from build folder to the S3 bucket | |
# Upload to S3 | |
- name: sync s3 | |
if: github.ref == 'refs/heads/master' | |
uses: jakejarvis/s3-sync-action@master | |
env: | |
SOURCE_DIR: "./examples/vue-example/dist" | |
AWS_REGION: "us-east-1" | |
AWS_S3_BUCKET: "demo-auth.web3auth.io" | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
# Invalidate Cloudfront (this action) | |
- name: Update AWS Cloudfront Config | |
uses: chaitanyapotti/cloudfront-update-distribution@v4 | |
if: github.ref == 'refs/heads/master' | |
with: | |
cloudfront-distribution-id: ${{ secrets.AWS_CLOUDFRONT_DISTRIBUTION_ID }} | |
cloudfront-invalidation-required: true | |
cloudfront-invalidation-path: "/*" | |
cloudfront-wait-for-service-update: false |