From aa5b4cd7008372d92a6173e3bb4e02eefe80318a Mon Sep 17 00:00:00 2001 From: WEBER Logan Date: Thu, 28 Sep 2023 14:48:53 +0200 Subject: [PATCH] ci: use github actions instead of travis --- .github/workflows/angular.yml | 58 ++++++++++++++++++++++++++++++++++ .github/workflows/release.yml | 22 +++++++++++++ .github/workflows/workflow.yml | 6 ++++ package.json | 1 + yarn.lock | 5 +++ 5 files changed, 92 insertions(+) create mode 100644 .github/workflows/angular.yml create mode 100644 .github/workflows/release.yml create mode 100644 .github/workflows/workflow.yml diff --git a/.github/workflows/angular.yml b/.github/workflows/angular.yml new file mode 100644 index 00000000..0b9ba529 --- /dev/null +++ b/.github/workflows/angular.yml @@ -0,0 +1,58 @@ +on: + workflow_call: + +env: + NODE_JS_VERSION: 12 + +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 || true + + 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-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 + needs: + - install-deps diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..c9bd96c8 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,22 @@ +on: + push: + tags: + - '*' + +jobs: + workflow: + uses: ./.github/workflows/angular.yml + release-on-npm: + runs-on: ubuntu-latest + steps: + - uses: actions/setup-node@v3 + with: + node-version: ${{env.NODE_JS_VERSION}} + cache: 'yarn' + registry-url: 'https://registry.npmjs.org' + - run: cp projects/ngx-openlayers/CHANGELOG.md dist/ngx-openlayers/CHANGELOG.md + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + needs: + - build diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 00000000..309c972d --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,6 @@ +on: + push: + +jobs: + angular: + uses: ./.github/workflows/angular.yml diff --git a/package.json b/package.json index 0d255885..0a379fa9 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ "@types/jasminewd2": "~2.0.3", "@types/node": "^12.11.1", "codelyzer": "^6.0.0", + "improved-yarn-audit": "^3.0.0", "jasmine-core": "~3.8.0", "jasmine-spec-reporter": "~5.0.0", "karma": "~5.0.0", diff --git a/yarn.lock b/yarn.lock index 87b8be60..bdb71f2c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5279,6 +5279,11 @@ import-local@^2.0.0: pkg-dir "^3.0.0" resolve-cwd "^2.0.0" +improved-yarn-audit@^3.0.0: + version "3.0.0" + resolved "https://repo.webfactory.intelligence-airbusds.com/artifactory/api/npm/npm/improved-yarn-audit/-/improved-yarn-audit-3.0.0.tgz#dfb09cea1a3a92c790ea2b4056431f6fb1b99bfa" + integrity sha512-b7CrBYYwMidtPciCBkW62C7vqGjAV10bxcAWHeJvGrltrcMSEnG5I9CQgi14nmAlUKUQiSvpz47Lo3d7Z3Vjcg== + imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"