Skip to content

Commit

Permalink
ci: hard code db credentials
Browse files Browse the repository at this point in the history
To fix Github Actions secrets access restriction for PRs originating from forks.

Signed-off-by: Rifa Achrinza <[email protected]>
  • Loading branch information
achrinza authored and samarpanB committed Nov 16, 2023
1 parent febee69 commit 9045ad8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ on:
# The branches below must be a subset of the branches above
branches: [master]

env:
CI: true

jobs:
build:
runs-on: ubuntu-22.04
env:
MYSQL_HOST: '127.0.0.1'
MYSQL_USER: myUser
MYSQL_PASSWORD: myPass
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
Expand All @@ -26,17 +27,12 @@ jobs:
with:
mysql-version: 8.0
- run: |
sudo mysql -e "CREATE USER '${{ secrets.MYSQL_USER }}'@'localhost' IDENTIFIED BY '${{ secrets.MYSQL_PASSWORD }}'"
sudo mysql -u root -e "GRANT ALL PRIVILEGES ON *.* TO '${{ secrets.MYSQL_USER }}'@'localhost'"
sudo mysql -u root -e "ALTER USER '${{ secrets.MYSQL_USER }}'@'localhost' IDENTIFIED WITH mysql_native_password by '${{ secrets.MYSQL_PASSWORD }}'"
sudo mysql -e "CREATE USER '$MYSQL_USER'@'localhost' IDENTIFIED BY '$MYSQL_PASSWORD'"
sudo mysql -u root -e "GRANT ALL PRIVILEGES ON *.* TO '$MYSQL_USER'@'localhost'"
sudo mysql -u root -e "ALTER USER '$MYSQL_USER'@'localhost' IDENTIFIED WITH mysql_native_password by '$MYSQL_PASSWORD'"
sudo mysql -u root -e "FLUSH PRIVILEGES"
- run: npm install
- run: npm test
env:
MYSQL_HOST: '127.0.0.1'
MYSQL_USER: ${{ secrets.MYSQL_USER }}
MYSQL_PASSWORD: ${{ secrets.MYSQL_PASSWORD }}
CI: true
code-lint:
name: Code Lint
runs-on: ubuntu-latest
Expand Down
Binary file added .setup.sh.swp
Binary file not shown.

0 comments on commit 9045ad8

Please sign in to comment.