Skip to content

Commit 1142a35

Browse files
committed
ci: switch workflows to main
1 parent 963d1a7 commit 1142a35

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ name: Lint
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
88
branches:
9-
- master
9+
- main
1010

1111
jobs:
1212
build:
1313
runs-on: macos-11
1414
steps:
1515
- uses: actions/checkout@master
16-
- name: Use Node.js 14.x
16+
- name: Use Node.js 16.x
1717
uses: actions/setup-node@v1
1818
with:
19-
version: 14.x
19+
version: 16.x
2020
- name: Lint
2121
run: |
2222
npm install

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ name: Test
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
88
branches:
9-
- master
9+
- main
1010

1111
jobs:
1212
build:
1313
runs-on: macos-11
1414
steps:
1515
- uses: actions/checkout@master
16-
- name: Use Node.js 14.x
16+
- name: Use Node.js 16.x
1717
uses: actions/setup-node@v1
1818
with:
19-
version: 14.x
19+
version: 16.x
2020
- name: npm install, build, and test
2121
run: |
2222
npm install

0 commit comments

Comments
 (0)