Skip to content

Commit

Permalink
Add support for installing glibc before checkout for pre-commit hook …
Browse files Browse the repository at this point in the history
…workflow
  • Loading branch information
deepjyoti30-st committed Sep 24, 2024
1 parent fc5759a commit b7ef159
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pre-commit-hook-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@ jobs:
runs-on: ubuntu-latest
container: rishabhpoddar/supertokens_python_driver_testing
steps:
- name: Install required GLIBC
run: |
apt-get update && \
apt-get install -y --no-install-recommends g++ make zlib1g-dev libc6
- uses: actions/checkout@v2
- name: Set up node
uses: actions/setup-node@v1
with:
node-version: '16'
node-version: '12'
- run: git init && git add --all && git -c user.name='test' -c user.email='[email protected]' commit -m 'init for pr action'
- run: make dev-install && rm -rf src
- run: ./hooks/pre-commit.sh
Expand Down

0 comments on commit b7ef159

Please sign in to comment.