@hedia/types 2.1.49-alpha.1 → 2.1.49-alpha.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hedia/types",
3
- "version": "2.1.49-alpha.1",
3
+ "version": "2.1.49-alpha.2",
4
4
  "description": "Enums, interfaces, and other common types for use in Hedia's software.",
5
5
  "main": "dist/index.js",
6
6
  "repository": {
@@ -1,38 +0,0 @@
1
- name: Node.js CI
2
-
3
- on:
4
- pull_request:
5
-
6
- env:
7
- SSH_PRIVATE_KEY: ${{ secrets.HEDIA_BOT_PRIVATE_SSH_KEY }}
8
- NPM_TOKEN: ${{ secrets.HEDIA_BOT_NPM_TOKEN }}
9
-
10
- jobs:
11
- build:
12
-
13
- runs-on: ubuntu-latest
14
-
15
- strategy:
16
- matrix:
17
- node-version: [14.15] #[8.x, 10.x, 12.x]
18
-
19
- steps:
20
- - uses: actions/checkout@v2
21
- - name: Use Node.js ${{ matrix.node-version }}
22
- uses: actions/setup-node@v1.4.4
23
- with:
24
- node-version: ${{ matrix.node-version }}
25
- - name: Register ssh keys
26
- uses: webfactory/ssh-agent@v0.4.1
27
- with:
28
- ssh-private-key: |
29
- ${{ env.SSH_PRIVATE_KEY }}
30
- - name: Register NPM access token
31
- run: npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
32
- env:
33
- NPM_TOKEN: ${{ env.NPM_TOKEN }}
34
-
35
- - run: npm ci --ignore-scripts
36
- - run: npm run prettier
37
- - run: npm run lint
38
- - run: npm run tsc