Skip to content

Commit 38700f1

Browse files
authored
Merge pull request #298 from zacuke/master
Angular 10 compat
2 parents 7820239 + b3a0f8c commit 38700f1

File tree

7 files changed

+18845
-22012
lines changed

7 files changed

+18845
-22012
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
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

.github/workflows/main.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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+

0 commit comments

Comments
 (0)