Skip to content

fix: prevent too strict dependencies in built lib's package.json (#81) #30

fix: prevent too strict dependencies in built lib's package.json (#81)

fix: prevent too strict dependencies in built lib's package.json (#81) #30

Workflow file for this run

---
name: 'pre-release'
on:
push:
branches:
- 'main'
tags-ignore:
- '*'
jobs:
pre_release:
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout source code'
uses: actions/checkout@v3
- name: 'Setup Node'
uses: actions/setup-node@v3
with:
node-version: 16.13
- name: 'Install dependencies'
run: npm install
- run: npm run lint:lib
- run: npm run test:lib
- run: npm run build:lib
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
automatic_release_tag: 'latest'
prerelease: true
title: 'Development Build'
id: 'automatic_releases'