File tree Expand file tree Collapse file tree 7 files changed +18845
-22012
lines changed
projects/angular-material-extensions/google-maps-autocomplete Expand file tree Collapse file tree 7 files changed +18845
-22012
lines changed Original file line number Diff line number Diff line change 77 build :
88 docker :
99 # specify the version you desire here
10- - image : circleci/node:8.11.3 -browsers
10+ - image : circleci/node:12.19.0 -browsers
1111
1212 # Specify service dependencies here if necessary
1313 # CircleCI maintains a library of pre-built images
Original file line number Diff line number Diff line change 1+ # This is a basic workflow to help you get started with Actions
2+
3+ name : CI
4+
5+ # Controls when the action will run. Triggers the workflow on push or pull request
6+ # events but only for the master branch
7+ on :
8+ push :
9+ branches : [ master ]
10+ pull_request :
11+ branches : [ master ]
12+
13+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
14+ jobs :
15+ # This workflow contains a single job called "build"
16+ build :
17+ # The type of runner that the job will run on
18+ runs-on : ubuntu-latest
19+
20+ # Steps represent a sequence of tasks that will be executed as part of the job
21+ steps :
22+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
23+ - uses : actions/checkout@v2
24+
25+ # Runs
26+ - name : Setup Node.js environment
27+ uses : actions/setup-node@v2.1.2
28+ - run : npm ci
29+ - run : npm run build:lib
30+ - run : |
31+ cd projects/angular-material-extensions/google-maps-autocomplete
32+ npm run build
33+ - run : |
34+ cd dist/angular-material-extensions/google-maps-autocomplete
35+ npm pack
36+
37+ # Uploads
38+ - uses : actions/upload-artifact@v2
39+ with :
40+ name : angular-material-extensions-google-maps-autocomplete
41+ path : dist/angular-material-extensions/google-maps-autocomplete/*.tgz
42+
You can’t perform that action at this time.
0 commit comments