fix: Fix ESlint issues #40
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Deploy to Amazon AWS | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: ['main'] | |
env: | |
AWS_REGION: us-east-1 | |
DOCKER_IMAGE_NAME: m324/insimodus | |
permissions: | |
contents: read | |
jobs: | |
test: | |
name: Lint & Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 # lts | |
cache: 'npm' | |
cache-dependency-path: ./package-lock.json | |
name: Install Dependencies # neu eigener step | |
working-directory: . | |
run: npm ci | |
- name: Lint | |
working-directory: . | |
run: npm run lint:ci | |
- name: Annotate Code | |
uses: DerLev/eslint-annotations@v2 | |
with: | |
eslint-report: ./eslint_report.json | |
continue-on-error: true | |
- name: Test | |
working-directory: . | |
run: npm run test:ci | |
deploy: | |
needs: test | |
name: Deploy | |
runs-on: ubuntu-latest | |
environment: aws | |
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-session-token: ${{ secrets.AWS_SESSION_TOKEN }} | |
aws-region: ${{ env.AWS_REGION }} | |
- uses: webfactory/ssh-agent@v0.9.0 | |
with: | |
ssh-private-key: ${{ secrets.AWS_SSH_PRIVATE_KEY }} | |
- name: Get Server Ip | |
id: get-server-ip | |
working-directory: terraform | |
shell: bash | |
run: | | |
echo "SERVER_IP=$(sh scripts/get_public_ip.sh ubuntu2404)" >> $GITHUB_ENV | |
- name: Set up Ruby for Kamal | |
uses: ruby/setup-ruby@v1 | |
env: | |
BUNDLE_GEMFILE: ./kamal/Gemfile | |
with: | |
ruby-version: 3.2.2 | |
bundler-cache: true | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v2 | |
- name: Push environment variables | |
working-directory: kamal | |
env: | |
KAMAL_SERVER_IP: ${{ env.SERVER_IP }} | |
KAMAL_REGISTRY: 'not-used-to-push-envs' | |
KAMAL_REGISTRY_PASSWORD: 'not-used-to-push-envs' | |
run: | | |
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) | |
to_envs() { jq -r "( . // {} ) | to_entries[] | \"\(.key)<<$EOF\n\(.value)\n$EOF\n\""; } | |
echo "$VARS_CONTEXT" | to_envs >> $GITHUB_ENV | |
echo "$SECRETS_CONTEXT" | to_envs >> $GITHUB_ENV | |
bundle exec kamal env push | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
${{ steps.login-ecr.outputs.registry }}/${{ env.DOCKER_IMAGE_NAME }} | |
tags: type=sha | |
- name: Build and push nginx Image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Kamal deploy image | |
working-directory: kamal | |
env: | |
KAMAL_SERVER_IP: ${{ env.SERVER_IP }} | |
KAMAL_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
KAMAL_REGISTRY_PASSWORD: ${{ steps.login-ecr.outputs[format('docker_password_{0}_dkr_ecr_us_east_1_amazonaws_com', secrets.AWS_ACCOUNT_ID)] }} | |
VERSION: ${{ steps.meta.outputs.version }} | |
run: | | |
bundle exec kamal traefik reboot -y | |
bundle exec kamal deploy --skip-push --version=$VERSION | |
echo "Visit me on [http://$KAMAL_SERVER_IP](http://$KAMAL_SERVER_IP) 🚀" >> $GITHUB_STEP_SUMMARY |