We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1e20ec commit dcfd009Copy full SHA for dcfd009
1 file changed
.github/workflows/ci.yaml
@@ -2,23 +2,22 @@ name: CI
2
3
on:
4
push:
5
- branches: [master]
+ branches: [main]
6
pull_request:
7
8
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
+ environment: npmjs
13
steps:
14
- uses: actions/checkout@v2
15
- uses: actions/setup-node@v1
16
with:
- node-version: 12
17
+ node-version: 14
18
- name: CI
19
run: |
- yarn audit
20
+ yarn install
21
yarn build
22
yarn lint
23
yarn test
- - name: codecov
24
- run: bash <(curl -s https://codecov.io/bash)
0 commit comments