Skip to content

Commit b78aa8b

Browse files
committed
refactor!: refactors resource manager to depend less on resource types
feat: adds playground to package.json scripts
1 parent c179259 commit b78aa8b

File tree

14 files changed

+533
-840
lines changed

14 files changed

+533
-840
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -23,27 +23,9 @@ jobs:
2323
- name: Set up Node.js
2424
uses: actions/setup-node@v3
2525
with:
26+
cache: 'npm'
2627
node-version: 18
2728

28-
- name: Cache node modules
29-
id: cache-npm
30-
uses: actions/cache@v3
31-
env:
32-
cache-name: cache-node-modules
33-
with:
34-
# npm cache files are stored in `~/.npm` on Linux/macOS
35-
path: ~/.npm
36-
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
37-
restore-keys: |
38-
${{ runner.os }}-build-${{ env.cache-name }}-
39-
${{ runner.os }}-build-
40-
${{ runner.os }}-
41-
42-
- if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
43-
name: List the state of node modules
44-
continue-on-error: true
45-
run: npm list
46-
4729
- name: Install Dependencies
4830
run: npm ci
4931

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
**/.DS_Store
22
node_modules
33
lib
4+
src/mock

0 commit comments

Comments
 (0)