ci(release-please): Remove hard-coded initial release version #77
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: General checks, tests and coverage reporting | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 18.14.2 | |
uses: actions/[email protected] | |
with: | |
node-version: 18.14.2 | |
- name: Install dependencies | |
run: npm ci | |
- name: Perfrom Licenses check | |
run: npm run check-licenses | |
- name: Perform dependency check | |
run: npm run depcheck | |
- name: Perform checks and tests | |
run: npm test | |
env: | |
NODE_OPTIONS: "" |