Fixes 475 issue where some users reported errors exporting entities and/or types when using the CustomAttributeType
function. They would receive an error similar to Exported variable '...' has or is using name 'OpaquePrimitiveSymbol' from external module "..." but cannot be named.
#226
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
name: cicd | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
env: | |
LOCAL_DYNAMO_ENDPOINT: "http://dynamodb:8000" | |
AWS_REGION: "us-east-1" | |
AWS_ACCESS_KEY_ID: "test" | |
AWS_SECRET_ACCESS_KEY: "test" | |
jobs: | |
build: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x, 18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Install dependencies | |
run: npm install | |
- name: Run tests | |
run: npm test |