wip(parse-version): initial test of parse_version input

This commit is contained in:
2023-05-19 21:50:30 +01:00
parent e58fa0f2f8
commit 77c38f4b74
12 changed files with 699 additions and 710 deletions

View File

@@ -18,6 +18,28 @@ jobs:
run: |
git diff --exit-code
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
- run: npm ci
- run: npm run lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
- run: npm ci
- run: npm test
release-please:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'