gd-bs 5.3.9 → 5.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,20 +10,23 @@ jobs:
10
10
  node-version: [14.x]
11
11
  steps:
12
12
  - uses: actions/checkout@v2
13
+
13
14
  - name: Use Node.js ${{ env.node-version }}
14
15
  uses: actions/setup-node@v1
15
16
  with:
16
17
  node-version: ${{ env.node-version }}
18
+
17
19
  - name: Install Libraries using NodeJS ${{ env.node-version }}
18
20
  run: |
19
21
  # Install the libraries
20
22
  npm install
21
- npm link typescript
23
+
22
24
  - name: Build Library using NodeJS ${{ env.node-version }}
23
25
  run: |
24
26
  # Build the project
25
27
  npm run all
26
28
  npm run test --if-present
29
+
27
30
  - name: Build Artifacts
28
31
  uses: actions/upload-artifact@v1
29
32
  with: