Skip to content

LocalStack testing

LocalStack testing #19

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'latest'
- run: npm ci
- name: ESLint
run: npm run lint
sonarcloud:
name: Unit+Integration & SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Start LocalStack
uses: LocalStack/setup-localstack@v0.2.2
# https://docs.aws.amazon.com/cli/latest/reference/dynamodb/create-table.html
- name: Create DynamoDB table
run: |-
awslocal dynamodb create-table --region eu-west-2 --cli-input-json file://scripts/local-test-db-scheme.json
awslocal s3 mb s3://test-bucket
- uses: actions/setup-node@v4
with:
node-version: 'latest'
- run: npm ci
- name: Run unit tests
run: npm run test:coverage
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}