Skip to content

twopoint5d: add resizeToElement to display params #191

twopoint5d: add resizeToElement to display params

twopoint5d: add resizeToElement to display params #191

Workflow file for this run

name: Build, test and deploy
on:
push:
branches: [ "main" ]
jobs:
ci:
name: Build, Lint and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
name: Install dependencies
- run: npm run ci
name: Run all checks
deploy:
name: Deploy packages
needs: ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm i
name: Install dependencies
- run: npm run publishNpmPkg
name: Publish npm packages
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}