Skip to content

chore: update dependency @tsconfig/recommended to v1.0.7 #123

chore: update dependency @tsconfig/recommended to v1.0.7

chore: update dependency @tsconfig/recommended to v1.0.7 #123

Workflow file for this run

name: Build & Release
on:
- push
jobs:
build-test:
name: Build & Test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use node
uses: actions/setup-node@v3.1.0
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
release:
name: Release
runs-on: ubuntu-20.04
needs: build-test
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use node
uses: actions/setup-node@v3.1.0
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Release
run: npm run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}