Skip to content

Commit d623768

Browse files
authored
Merge pull request #4 from fastly/journie-updates-sdk
Updating SDK to 1.3.1
2 parents 0911472 + c2bb462 commit d623768

File tree

5 files changed

+2327
-1605
lines changed

5 files changed

+2327
-1605
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/README.md @fastly/developer-relations
2+
/fastly.toml @fastly/developer-relations

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on: pull_request
2+
name: Test
3+
jobs:
4+
test:
5+
strategy:
6+
matrix:
7+
platform: [ubuntu-latest]
8+
runs-on: ${{ matrix.platform }}
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v3
12+
- uses: actions/setup-node@v3
13+
with:
14+
node-version: '18'
15+
- uses: actions/cache@v3
16+
with:
17+
path: ~/.npm
18+
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
19+
restore-keys: |
20+
${{ runner.os }}-node-
21+
- run: npm ci
22+
- name: build
23+
run: npm run build

fastly.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# This file describes a Fastly Compute@Edge package. To learn more visit:
2-
# https://developer.fastly.com/reference/fastly-toml/
3-
41
authors = ["[email protected]"]
52
description = "Park your users in a virtual queue to reduce the demand on your origins during peak times."
63
language = "javascript"
@@ -22,12 +19,9 @@ name = "Queuing / Waiting room (JS)"
2219
[local_server.dictionaries]
2320

2421
[local_server.dictionaries.config]
25-
file = "devconfig.json"
22+
file = "devconfig.example.json"
2623
format = "json"
2724

28-
[scripts]
29-
build = "$(npm bin)/webpack && $(npm bin)/js-compute-runtime ./bin/index.js ./bin/main.wasm"
30-
3125
[setup]
3226

3327
[setup.backends]

0 commit comments

Comments
 (0)