Skip to content

Commit 5914530

Browse files
test
1 parent 352f90d commit 5914530

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ name: wa-sqlite CI
55

66
on:
77
push:
8-
branches: ["master"]
8+
branches: ['master']
99
pull_request:
10-
branches: ["master"]
10+
branches: ['master']
1111

1212
env:
1313
EM_VERSION: 3.1.64
14-
EM_CACHE_FOLDER: "emsdk-cache"
14+
EM_CACHE_FOLDER: 'emsdk-cache'
1515

1616
jobs:
1717
build:
@@ -27,14 +27,14 @@ jobs:
2727
uses: actions/setup-node@v4
2828
with:
2929
node-version: ${{ matrix.node-version }}
30-
cache: "npm"
30+
cache: 'npm'
3131

3232
- uses: browser-actions/setup-chrome@v1
3333
id: setup-chrome
3434
with:
3535
chrome-version: 129
3636
- run: |
37-
${{ steps.setup-chrome.outputs.chrome-path }} --version
37+
${{ steps.setup-chrome.outputs.chrome-path }} --version
3838
3939
# Install yarn dependencies.
4040
- name: Get yarn cache directory path
@@ -48,7 +48,6 @@ jobs:
4848
restore-keys: |
4949
${{ runner.os }}-yarn-
5050
- run: yarn install
51-
5251
- name: Test with checked-in WASM files
5352
run: yarn test
5453

@@ -66,8 +65,8 @@ jobs:
6665
- run: emcc -v
6766

6867
- name: Make script executable
69-
run: chmod +x ./scripts/download-core-build.js
70-
68+
run: node scripts/download-core-build.js
69+
7170
- name: Test WASM build
7271
run: |
7372
make clean && make

0 commit comments

Comments
 (0)