Skip to content

fix: add athena:GetDataCatalog #57

fix: add athena:GetDataCatalog

fix: add athena:GetDataCatalog #57

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- name: Install dependencies & build
run: npm ci && npm run build
lint:
name: eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: ESLint
run: npm run lint