Skip to content

Commit

Permalink
ci: Fix auto-release (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza authored Jun 5, 2023
1 parent 259d7de commit 4d495f8
Show file tree
Hide file tree
Showing 5 changed files with 23,638 additions and 1,751 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
name: ${{ matrix.name }}
node-version: [14, 16, 18]
fail-fast: false
name: Test Node ${{ matrix.node-version }}
steps:
- name: Fix usage of insecure GitHub protocol
run: sudo git config --system url."https://github".insteadOf "git://github"
- name: Fix git protocol for Node 14
if: ${{ startsWith(matrix.node-version, '14') }}
run: sudo git config --system url."https://github".insteadOf "ssh://git@github"
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
Expand All @@ -25,4 +31,7 @@ jobs:
- name: Check Linting
run: npm run lint
- name: Run Tests
run: npm run test
run: npm run test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2 changes: 1 addition & 1 deletion .github/workflows/release-automated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 18
- name: Cache Node.js modules
uses: actions/cache@v2
with:
Expand Down
Loading

0 comments on commit 4d495f8

Please sign in to comment.