Skip to content

Commit b4a9a9b

Browse files
test
1 parent c8c91bf commit b4a9a9b

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 7 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:
@@ -23,20 +23,18 @@ jobs:
2323

2424
steps:
2525
- uses: actions/checkout@v4
26-
with:
27-
submodules: 'recursive'
2826
- name: Use Node.js ${{ matrix.node-version }}
2927
uses: actions/setup-node@v4
3028
with:
3129
node-version: ${{ matrix.node-version }}
32-
cache: 'npm'
30+
cache: "npm"
3331

3432
- uses: browser-actions/setup-chrome@v1
3533
id: setup-chrome
3634
with:
3735
chrome-version: 129
3836
- run: |
39-
${{ steps.setup-chrome.outputs.chrome-path }} --version
37+
${{ steps.setup-chrome.outputs.chrome-path }} --version
4038
4139
# Install yarn dependencies.
4240
- name: Get yarn cache directory path
@@ -50,6 +48,7 @@ jobs:
5048
restore-keys: |
5149
${{ runner.os }}-yarn-
5250
- run: yarn install
51+
5352
- name: Test with checked-in WASM files
5453
run: yarn test
5554

@@ -66,6 +65,9 @@ jobs:
6665
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
6766
- run: emcc -v
6867

68+
- name: Make script executable
69+
run: chmod +x ./scripts/download-core-build.js
70+
6971
- name: Test WASM build
7072
run: |
7173
make clean && make

0 commit comments

Comments
 (0)