-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: switch from travis to github actions
- Loading branch information
Showing
7 changed files
with
2,014 additions
and
1,932 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
on: | ||
workflow_call: | ||
|
||
env: | ||
NODE_JS_VERSION: 16 | ||
|
||
jobs: | ||
install-and-scan-deps: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{env.NODE_JS_VERSION}} | ||
cache: 'yarn' | ||
- uses: actions/cache@v3 | ||
with: | ||
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | ||
path: '**/node_modules' | ||
- run: yarn config get cacheFolder | ||
- run: yarn --frozen-lockfile | ||
- run: yarn run improved-yarn-audit --min-severity high | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{env.NODE_JS_VERSION}} | ||
cache: 'yarn' | ||
- uses: actions/cache@v3 | ||
with: | ||
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | ||
path: '**/node_modules' | ||
- run: yarn config get cacheFolder | ||
- run: yarn --frozen-lockfile | ||
- run: yarn lint | ||
needs: | ||
- install-and-scan-deps | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{env.NODE_JS_VERSION}} | ||
cache: 'yarn' | ||
- uses: actions/cache@v3 | ||
with: | ||
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | ||
path: '**/node_modules' | ||
- run: yarn --frozen-lockfile | ||
- run: yarn build:lib | ||
- run: yarn build:demo --base-href "/ngx-openlayers/" --progress false | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: lib-build | ||
path: dist/ngx-openlayers/ | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: demo-build | ||
path: dist/demo-ngx-openlayers/ | ||
needs: | ||
- install-and-scan-deps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
on: | ||
push: | ||
branches: | ||
- '**' | ||
tags-ignore: | ||
- '**' | ||
|
||
jobs: | ||
angular: | ||
uses: ./.github/workflows/angular.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
angular: | ||
uses: ./.github/workflows/angular.yml | ||
|
||
release-lib-on-npm: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: lib-build | ||
path: dist/ngx-openlayers/ | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{env.NODE_JS_VERSION}} | ||
cache: 'yarn' | ||
registry-url: 'https://registry.npmjs.org' | ||
- uses: actions/cache@v3 | ||
with: | ||
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | ||
path: '**/node_modules' | ||
- run: cp projects/ngx-openlayers/CHANGELOG.md dist/ngx-openlayers/CHANGELOG.md | ||
- run: cd dist/ngx-openlayers/ && npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
needs: | ||
- angular | ||
|
||
release-lib-on-gh: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: lib-build | ||
path: dist/ngx-openlayers/ | ||
- id: check-tag | ||
run: | | ||
if echo "${{ github.event.ref }}" | grep -Eq "^refs/tags/[0-9]+.[0-9]+.[0-9]+-.*$"; then | ||
echo "prerelease=true" >> $GITHUB_OUTPUT | ||
fi | ||
- uses: ncipollo/release-action@v1 | ||
with: | ||
artifacts: "dist/ngx-openlayers/" | ||
prerelease: ${{ steps.check-tag.outputs.prerelease == 'true' }} | ||
needs: | ||
- angular | ||
|
||
deploy-demo-on-gh-pages: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
steps: | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: demo-build | ||
path: . | ||
- uses: actions/upload-pages-artifact@v2 | ||
with: | ||
path: . | ||
- uses: actions/deploy-pages@v2 | ||
id: deployment | ||
needs: | ||
- angular |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.