Add renovate.json #58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release DRY-RUN | |
on: [push, pull_request, pull_request_target, create, fork, release] | |
jobs: | |
release_dry-run: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ '14' ] | |
name: Release DRY-RUN - Node.js - ${{ matrix.node }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2-beta | |
with: | |
node-version: ${{ matrix.node }} | |
check-latest: true | |
- name: Install dependencies | |
run: yarn install #--immutable --immutable-cache --check-cache | |
- name: Build target | |
run: yarn build | |
- name: Test code | |
run: yarn test | |
- name: DRY-RUN Release package | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npx semantic-release --dry-run | |