docs: add CONTRIBUTING, CODE_OF_CONDUCT, issue/PR templates, dependab… #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Bundle Test | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| bundle-test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| python-version: ['3.10', '3.13'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install build tools | |
| run: python -m pip install --upgrade pip setuptools wheel | |
| - name: Install grncli | |
| run: pip install . | |
| - name: Build bundle | |
| run: bash scripts/make-bundle | |
| - name: Test bundle install | |
| run: | | |
| cd dist | |
| unzip -o grncli-bundle.zip | |
| cd grncli-bundle | |
| bash install-offline | |
| - name: Verify installation | |
| run: | | |
| export PATH="$HOME/.local/bin:$PATH" | |
| grn --version |