Skip to content

Commit a13184e

Browse files
committed
chore: resolved conflicts
2 parents d63ae5f + 7bb262f commit a13184e

45 files changed

Lines changed: 1577 additions & 1785 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,27 @@ jobs:
2222
cache: "npm"
2323

2424
- name: Install dependencies
25-
run: npm install
25+
run: npm ci
26+
27+
- name: Install Playwright browsers
28+
run: npx playwright install --with-deps chromium firefox webkit
2629

2730
- name: Build
2831
run: npm run build
2932

33+
- name: Test
34+
run: npm run test
35+
3036
# Set the credentials from repository settings/secrets
3137
- name: Configure AWS credentials
3238
if: github.ref == 'refs/heads/master'
33-
uses: aws-actions/configure-aws-credentials@v4
39+
uses: aws-actions/configure-aws-credentials@v6
3440
with:
3541
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
3642
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
3743
aws-region: ${{ secrets.AWS_REGION_US }}
3844

3945
- name: Build new vue demo app
40-
if: github.ref == 'refs/heads/master'
4146
run: |
4247
cd demo/vue-app-new
4348
npm install
@@ -63,7 +68,7 @@ jobs:
6368
# Invalidate Cloudfront (this action)
6469
- name: invalidate vue app new s3
6570
if: github.ref == 'refs/heads/master'
66-
uses: chaitanyapotti/cloudfront-update-distribution@v4
71+
uses: chaitanyapotti/cloudfront-update-distribution@v5
6772
with:
6873
cloudfront-distribution-id: ${{ secrets.AWS_CLOUDFRONT_NEW_DEMO_APP_DISTRIBUTION_ID }}
6974
cloudfront-invalidation-path: "/*"

0 commit comments

Comments
 (0)