Skip to content

πŸ› Fix E2E tests and semver validation error type (#250) #52

πŸ› Fix E2E tests and semver validation error type (#250)

πŸ› Fix E2E tests and semver validation error type (#250) #52

name: Canary release
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12]
steps:
- name: Checkout project
uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Publish Canary version
run: npx lerna publish --canary --yes --exact
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}