Skip to content

Commit

Permalink
Correct node-version tag and the production branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
eaviles committed Feb 11, 2021
1 parent 6de970e commit ed09b08
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish Module
on:
push:
branches:
- master
- main
jobs:
install-and-check:
name: Install & Check
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ on:
- develop
jobs:
test:
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [12, 14, 15]
node-version: [12, 14, 15]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Clone repository
uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node_version: ${{ matrix.node_version }}.x
node-version: ${{ matrix.node-version }}.x
- name: Install
run: npm ci --loglevel=error
env:
Expand Down

0 comments on commit ed09b08

Please sign in to comment.