Skip to content

Fix warning related to Node version 20 #6

Fix warning related to Node version 20

Fix warning related to Node version 20 #6

name: S3Workflow
on:
push:
branches:
- level-300
defaults:
run:
working-directory: ./client
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/setup-node@v2
with:

Check failure on line 21 in .github/workflows/frontend-s3-deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/frontend-s3-deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 21
node-version: 20
- name: Install Dependencies
run: npm install
- name: create build
run: npm run build
- name: AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{secrets.ACCESS_KEY}}
aws-secret-access-key: ${{secrets.SECRET_ACCESS_KEY}}
aws-region: eu-west-1
- name: Deploy static site to S3 bucket
run: aws s3 sync ./build s3://video-storage-app