Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

chore(deps): update all dependencies #224

chore(deps): update all dependencies

chore(deps): update all dependencies #224

Workflow file for this run

name: Release
on:
push:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
release:
name: Test, Build & Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: "package.json"
cache: "npm"
- name: Install dependencies
run: npm --no-update-notifier --no-fund --no-audit ci
- name: Lint
run: npm run lint
- name: Unit Test
run: npm test
- name: Build
run: npm run build
- name: Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run semantic-release