Skip to content

v4.1.1

v4.1.1 #4

Workflow file for this run

name: release
on:
workflow_dispatch:
release:
types: [released]
jobs:
setup-build-release:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Test Services
run: npm run test:services:start
- name: Build
run: npm run build
- name: Testing
env:
FIREBASE_CERT: ${{ secrets.FIREBASE_CERT }}
run: npm run test
- name: Publish
run: |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
npm publish --ignore-scripts
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}