Skip to content

0.7.6 - Improve flatten type #15

0.7.6 - Improve flatten type

0.7.6 - Improve flatten type #15

Workflow file for this run

name: Publish to NPM
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies ⏳
run: npm ci
- name: Lint 🧹
run: npm run lint
- name: Test Unit 🧪
run: npm run test
- name: Test types 🛠️
run: npm run test:typecheck
- name: Setup DynamoDB Local
uses: rrainn/[email protected]
- name: Sleep for 10 seconds
run: sleep 10s
shell: bash
- name: Test E2E ⚙️
run: npm run test:e2e
- name: Coverage 📝
run: npm run coverage
- name: Build 🔧
run: npm run build
- name: Publish package on NPM 📦
run: cd dist && npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}