Skip to content

Commit

Permalink
chore: test
Browse files Browse the repository at this point in the history
  • Loading branch information
edleeks87 committed Aug 10, 2022
1 parent 10e9958 commit 5abce6b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/semantic-commit-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,22 @@ jobs:
run: npm ci
- id: lint_commits
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ">=16.16.0 16"
- run: npm ci
test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.version }}
- run: npm ci
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ Using this to test actions produce expected results
Add a new line with different stuff in it.

Add new build stuff.
test

0 comments on commit 5abce6b

Please sign in to comment.