Skip to content

Commit dcfd009

Browse files
committed
set correct branch for CI
1 parent e1e20ec commit dcfd009

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,22 @@ name: CI
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
7-
branches: [master]
7+
branches: [main]
88

99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12+
environment: npmjs
1213
steps:
1314
- uses: actions/checkout@v2
1415
- uses: actions/setup-node@v1
1516
with:
16-
node-version: 12
17+
node-version: 14
1718
- name: CI
1819
run: |
19-
yarn audit
20+
yarn install
2021
yarn build
2122
yarn lint
2223
yarn test
23-
- name: codecov
24-
run: bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)