Skip to content

upgrade eventize to 3.4.1 #195

upgrade eventize to 3.4.1

upgrade eventize to 3.4.1 #195

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 }}