Skip to content

Commit

Permalink
enhancement/explorer-instrument-filter (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinJJackson authored Feb 16, 2024
1 parent 406251d commit 4b09e8e
Show file tree
Hide file tree
Showing 33 changed files with 946 additions and 1,138 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
node_modules/
public/
build/
src/app-components/panel-group
33 changes: 33 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: CI Build User Interface; Deploy to Environment TEST

on:
push:
branches:
- test
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build

- name: Deploy to Test
env:
AWS_DEFAULT_REGION: ${{ secrets.CWBICI_TEST_AWS_REGION }}
AWS_ACCESS_KEY_ID: ${{ secrets.CWBICI_TEST_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.CWBICI_TEST_AWS_SECRET_ACCESS_KEY }}
run: npm run deploy-test
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# testing
/coverage
.eslintcache
rollup-analyze.json
rollup-analyze.*

# production
/build
Expand Down
Loading

0 comments on commit 4b09e8e

Please sign in to comment.