Skip to content

Commit

Permalink
Test against release-it@14.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Sep 8, 2020
1 parent d5b6775 commit f0a5e5e
Showing 1 changed file with 25 additions and 7 deletions.
32 changes: 25 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
build:
name: "Node ${{ matrix.node-version }}"

runs-on: ubuntu-latest

Expand All @@ -17,13 +18,30 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install dependencies
run: yarn install --non-interactive
- name: lint
run: yarn lint:js
- name: test
run: yarn test
run: yarn install --non-interactive --frozen-lockfile
- run: yarn lint:js
- run: yarn test

release-it-compat:
name: "release-it@${{ matrix.release-it-version }}"

runs-on: ubuntu-latest

strategy:
matrix:
release-it-version: [13, 14]

steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
- name: install dependencies
run: yarn install --non-interactive --frozen-lockfile
- run: yarn add --dev release-it@^${{ matrix.release-it-version }}
- run: yarn lint:js
- run: yarn test

0 comments on commit f0a5e5e

Please sign in to comment.