2021-10-11 12:40:56 +03:00
|
|
|
name: Publish
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- v[0-9]*.[0-9]*.[0-9]*
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
bundle:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-05-16 16:16:16 +03:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
2022-01-05 18:11:05 +03:00
|
|
|
- name: Cache node modules
|
2022-05-16 16:16:16 +03:00
|
|
|
uses: actions/cache@v3
|
2022-01-05 18:11:05 +03:00
|
|
|
with:
|
|
|
|
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
|
|
|
|
key: npm-${{ hashFiles('package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
npm-${{ hashFiles('package-lock.json') }}
|
|
|
|
npm-
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run bundle
|
|
|
|
- name: Store bundle artifact
|
2022-05-16 16:16:16 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
2022-01-05 18:11:05 +03:00
|
|
|
with:
|
|
|
|
name: bundles
|
|
|
|
path: bundles
|
|
|
|
retention-days: 1
|
2021-10-11 12:40:56 +03:00
|
|
|
unit-tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-05-16 16:16:16 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-05-12 15:31:35 +03:00
|
|
|
- run: npm ci && npm ci --prefix cli
|
2022-01-05 18:11:05 +03:00
|
|
|
- run: npm test
|
2021-10-11 12:40:56 +03:00
|
|
|
e2e-tests:
|
|
|
|
needs: [bundle]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-05-16 16:16:16 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-01-05 18:11:05 +03:00
|
|
|
- run: npm ci
|
|
|
|
- name: Download bundled artifact
|
2022-05-16 16:16:16 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2022-01-05 18:11:05 +03:00
|
|
|
with:
|
|
|
|
name: bundles
|
|
|
|
path: bundles
|
|
|
|
- run: npm run e2e
|
2021-10-11 18:32:43 +03:00
|
|
|
# disable this for now
|
|
|
|
# deploy-demo:
|
|
|
|
# needs: [bundle, unit-tests, e2e-tests]
|
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
# steps:
|
2022-05-16 16:16:16 +03:00
|
|
|
# - uses: actions/checkout@v3
|
2021-10-11 18:32:43 +03:00
|
|
|
# - name: Configure AWS Credentials
|
|
|
|
# uses: aws-actions/configure-aws-credentials@v1
|
|
|
|
# with:
|
|
|
|
# aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
# aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
# aws-region: us-east-1
|
|
|
|
# - name: Install dependencies
|
|
|
|
# run: npm ci
|
|
|
|
# - name: Download bundled artifacts
|
2022-05-16 16:16:16 +03:00
|
|
|
# uses: actions/download-artifact@v3
|
2021-10-11 18:32:43 +03:00
|
|
|
# with:
|
|
|
|
# name: bundles
|
|
|
|
# path: bundles
|
|
|
|
# - name: Build package
|
|
|
|
# run: npm run build:demo
|
|
|
|
# - name: Deploy to S3 bucket
|
|
|
|
# run: npm run deploy:demo
|
|
|
|
# - name: Invalidate
|
|
|
|
# run: aws cloudfront create-invalidation --distribution-id ${{ secrets.CF_DEMO_DISTRIBUTION_ID }} --paths "/*"
|
2021-10-11 12:40:56 +03:00
|
|
|
publish:
|
|
|
|
needs: [bundle, unit-tests, e2e-tests]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-05-16 16:16:16 +03:00
|
|
|
- uses: actions/setup-node@v3
|
2021-10-11 12:40:56 +03:00
|
|
|
with:
|
2022-01-05 18:11:05 +03:00
|
|
|
node-version: '14.x'
|
2021-10-11 20:39:20 +03:00
|
|
|
registry-url: 'https://registry.npmjs.org'
|
2022-05-16 16:16:16 +03:00
|
|
|
- uses: actions/checkout@v3
|
2021-10-11 12:40:56 +03:00
|
|
|
- name: Download bundled artifacts
|
2022-05-16 16:16:16 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2021-10-11 12:40:56 +03:00
|
|
|
with:
|
|
|
|
name: bundles
|
|
|
|
path: bundles
|
|
|
|
- name: Cache node modules
|
2022-05-16 16:16:16 +03:00
|
|
|
uses: actions/cache@v3
|
2021-10-11 12:40:56 +03:00
|
|
|
with:
|
|
|
|
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
|
|
|
|
key: npm-${{ hashFiles('package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
npm-${{ hashFiles('package-lock.json') }}
|
|
|
|
npm-
|
|
|
|
- name: Before deploy
|
2021-10-11 18:32:43 +03:00
|
|
|
run: npm ci && npm run declarations
|
2021-10-11 12:40:56 +03:00
|
|
|
- name: Publish to NPM
|
|
|
|
run: npm publish
|
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|