Workflow file for this run
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
run-name: dev | |
on: | |
push: | |
branches-ignore: | |
- "cesium.com" | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install node 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: npm install | |
run: npm install | |
- name: lint *.js | |
run: npm run eslint | |
- name: lint *.md | |
run: npm run markdownlint | |
- name: format code | |
run: npm run prettier-check | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install node 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: npm install | |
run: npm install | |
- name: build | |
run: npm run build | |
- name: coverage (firefox) | |
run: npm run coverage -- --browsers FirefoxHeadless --webgl-stub --failTaskOnError --suppressPassed | |
# TODO: Deploy artifacts | |
release-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install node 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: npm install | |
run: npm install | |
- name: release build | |
run: npm run build-release | |
- name: release tests (chrome) | |
run: npm run test -- --browsers ChromeCI --failTaskOnError --webgl-stub --release --suppressPassed | |
- name: cloc | |
run: npm run cloc | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install node 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: npm install | |
run: npm install | |
- name: set the version in package.json | |
env: | |
BUILD_VERSION: ${{ github.ref_name }}.${{ github.run_number }} | |
run: npm run deploy-set-version -- --buildVersion $BUILD_VERSION | |
- name: create release zip | |
run: npm run make-zip | |
- name: package "cesium" module | |
run: npm pack &> /dev/null | |
- name: package "@cesium/" modules | |
run: npm pack --workspaces &> /dev/null | |
- name: build apps | |
run: npm run build-apps | |
- uses: ./.github/actions/verify-package | |
- name: aws credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
env: | |
AWS_S3_USERNAME: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_S3_PASSWORD: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
if: ${{ env.AWS_S3_USERNAME != '' }} | |
with: | |
aws-region: us-east-1 | |
- name: deploy to s3 | |
env: | |
AWS_S3_USERNAME: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
BRANCH: ${{ github.ref_name }} | |
if: ${{ env.AWS_S3_USERNAME != '' }} | |
run: npm run deploy-s3 -- -b "cesium-dev" -d cesium/$BRANCH -c 'no-cache' --confirm | |
node-16: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install node 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: npm install | |
run: npm install | |
- name: release build | |
run: npm run build-release | |
- name: package "cesium" module | |
run: npm pack &> /dev/null | |
- name: package "@cesium/" modules | |
run: npm pack --workspaces &> /dev/null | |
- uses: ./.github/actions/verify-package |