Skip to content

fix: bumps up to new version #23

fix: bumps up to new version

fix: bumps up to new version #23

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
node: [ 14 ]
steps:
- name: Checkout 🔔
uses: actions/checkout@v1
- name: Setup node env 🏗
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies ✨
run: npm install
- name: Compile Typescript 📝
run: npm run tsc
- name: Run unit tests 🛠
run: npm run test
- name: Release new package version 🛫
run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}