Skip to content

Add a few more skills to the app #20

Add a few more skills to the app

Add a few more skills to the app #20

Workflow file for this run

name: CI/CD
on:
push:
branches:
- main
jobs:
pre-deployment-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Cypress tests 🧪
uses: cypress-io/github-action@v6
deploy:
needs: pre-deployment-tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure AWS Credentials
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: eu-central-1
- name: Deploy static site to S3 bucket
run: aws s3 sync ./src/ s3://cypress-skills-checklist --delete
post-deployment-tests:
needs: deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Cypress tests 🧪
uses: cypress-io/github-action@v6
with:
command: npm run test:prod