-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (29 loc) · 753 Bytes
/
.travis.yml
File metadata and controls
36 lines (29 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
os: linux
arch:
- arm64
language: node_js
node_js:
- '16'
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s
- export PATH=`yarn global bin`:$PATH
install:
- yarn install --pure-lockfile
- yarn audit
before_script:
- yarn --version
script:
- yarn ci:build
before_deploy:
- git config --global user.email ${GITHUB_EMAIL}
- git config --global user.name ${GITHUB_USER}
- git remote set-url origin "https://${GITHUB_TOKEN}@github.com/sirian/js.git"
- npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
- git checkout release
#deploy:
# provider: script
# script: "yarn lerna:publish"
# skip_cleanup: true
# on:
# node: "15"
# branch: "master"