Skip to content

Commit aab38c4

Browse files
committed
WIP
1 parent ca39d0f commit aab38c4

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

.github/workflows/test-pr.yml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,16 @@ jobs:
3838
3939
- name: Install OSX Dependencies
4040
if: ${{ contains(matrix.os, 'macos') }}
41-
shell: "bash"
4241
run: |
4342
brew install ninja flex bison automake autoconf-archive coreutils
4443
if [[ $(uname -m) == 'arm64' ]]; then
45-
echo 'export PATH="/opt/homebrew/opt/flex/bin:$PATH"' >> /Users/runner/.bash_profile
46-
echo 'export PATH="/opt/homebrew/opt/bison/bin:$PATH"' >> /Users/runner/.bash_profile
44+
echo 'export PATH="/opt/homebrew/opt/flex/bin:$PATH"' >> /Users/runner/.zshrc
45+
echo 'export PATH="/opt/homebrew/opt/bison/bin:$PATH"' >> /Users/runner/.zshrc
4746
else
48-
echo 'export PATH="/usr/local/opt/flex/bin:$PATH"' >> /Users/runner/.bash_profile
49-
echo 'export PATH="/usr/local/opt/bison/bin:$PATH"' >> /Users/runner/.bash_profile
47+
echo 'export PATH="/usr/local/opt/flex/bin:$PATH"' >> /Users/runner/.zshrc
48+
echo 'export PATH="/usr/local/opt/bison/bin:$PATH"' >> /Users/runner/.zshrc
5049
fi
51-
source /Users/runner/.bash_profile
50+
source /Users/runner/.zshrc
5251
bison --version
5352
5453
- name: Export GitHub Actions cache environment variables
@@ -59,39 +58,34 @@ jobs:
5958
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
6059
6160
- name: npm ci
62-
shell: "bash"
6361
run: |
62+
bison --version
6463
npm ci
6564
6665
- name: npx playwright install
67-
shell: "bash"
6866
run: |
67+
bison --version
6968
npx playwright install --with-deps
7069
7170
- name: install-build-deps
72-
shell: "bash"
7371
run: |
7472
bison --version
7573
npm run install-build-deps
7674
7775
- name: Lint
78-
shell: "bash"
7976
run: |
8077
npm run lint
8178
8279
- name: Build
83-
shell: "bash"
8480
run: |
8581
npm run build
8682
8783
- name: Test
88-
shell: "bash"
8984
run: |
9085
npm run test
9186
9287
- name: Calculate Coverage
9388
if: ${{ matrix.os == 'ubuntu-24.04' && matrix.node == 20 }}
94-
shell: "bash"
9589
run: |
9690
npm run coverage
9791

0 commit comments

Comments
 (0)