File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -41,13 +41,10 @@ jobs:
41
41
run : |
42
42
brew install ninja flex bison automake autoconf-archive coreutils
43
43
if [[ $(uname -m) == 'arm64' ]]; then
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
44
+ echo "PATH=/opt/homebrew/opt/bison/bin:/opt/homebrew/opt/flex/bin:$PATH" >> $GITHUB_ENV
46
45
else
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
46
+ echo "PATH=/usr/local/opt/bison/bin:/opt/homebrew/opt/flex/bin:$PATH" >> $GITHUB_ENV
49
47
fi
50
- source /Users/runner/.zshrc
51
48
bison --version
52
49
53
50
- name : Export GitHub Actions cache environment variables
@@ -64,12 +61,10 @@ jobs:
64
61
65
62
- name : npx playwright install
66
63
run : |
67
- bison --version
68
64
npx playwright install --with-deps
69
65
70
66
- name : install-build-deps
71
67
run : |
72
- bison --version
73
68
npm run install-build-deps
74
69
75
70
- name : Lint
You can’t perform that action at this time.
0 commit comments