File tree Expand file tree Collapse file tree 1 file changed +10
-18
lines changed
Expand file tree Collapse file tree 1 file changed +10
-18
lines changed Original file line number Diff line number Diff line change 11# This is a basic workflow to help you get started with Actions
22
3- name : CI
3+ name : deploy
44
5- # Controls when the action will run.
5+ # Controls when the action will run.
66on :
77 # Triggers the workflow on push or pull request events but only for the main branch
88 push :
99 branches : [ main ]
10- pull_request :
11- branches : [ main ]
1210
1311 # Allows you to run this workflow manually from the Actions tab
1412 workflow_dispatch :
1513
1614# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17- jobs :
18- # This workflow contains a single job called "build"
19- build :
20- # The type of runner that the job will run on
15+ deploy :
2116 runs-on : ubuntu-latest
2217
23- # Steps represent a sequence of tasks that will be executed as part of the job
2418 steps :
25- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2619 - uses : actions/checkout@v2
2720
28- # Runs a single command using the runners shell
29- - name : Run a one-line script
30- run : echo Hello, world!
21+ - uses : actions/setup-node@v2.1.5
22+ with :
23+ node-version : " 15.x"
24+
25+ - run : echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
3126
32- # Runs a set of commands using the runners shell
33- - name : Run a multi-line script
34- run : |
35- echo Add other actions to build,
36- echo test, and deploy your project.
27+ - run : npm install
28+ - run : npm run deploy
You can’t perform that action at this time.
0 commit comments