mirror of
https://github.com/inventree/InvenTree.git
synced 2026-08-10 15:36:17 +00:00
* chore(deps): bump the dependencies group with 7 updates Bumps the dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `7.0.0` | `7.0.1` | | [actions/setup-python](https://github.com/actions/setup-python) | `6.3.0` | `7.0.0` | | [j178/prek-action](https://github.com/j178/prek-action) | `2.0.5` | `2.0.6` | | [zizmorcore/zizmor-action](https://github.com/zizmorcore/zizmor-action) | `0.5.7` | `0.6.0` | | [actions/attest](https://github.com/actions/attest) | `4.1.1` | `4.2.0` | | [github/codeql-action/upload-sarif](https://github.com/github/codeql-action) | `4.37.0` | `4.37.1` | | [crowdin/github-action](https://github.com/crowdin/github-action) | `2.16.3` | `2.16.4` | Updates `actions/checkout` from 7.0.0 to 7.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0...3d3c42e5aac5ba805825da76410c181273ba90b1) Updates `actions/setup-python` from 6.3.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/ece7cb06caefa5fff74198d8649806c4678c61a1...5fda3b95a4ea91299a34e894583c3862153e4b97) Updates `j178/prek-action` from 2.0.5 to 2.0.6 - [Release notes](https://github.com/j178/prek-action/releases) - [Commits](https://github.com/j178/prek-action/compare/e98a699c41eb69ab013a45817a0406469a748f8d...5337cb91e0fa35a7ff31b9ca345126d8bbbcdf16) Updates `zizmorcore/zizmor-action` from 0.5.7 to 0.6.0 - [Release notes](https://github.com/zizmorcore/zizmor-action/releases) - [Commits](https://github.com/zizmorcore/zizmor-action/compare/192e21d79ab29983730a13d1382995c2307fbcaa...6599ee8b7a49aef6a770f63d261d214911a7ce02) Updates `actions/attest` from 4.1.1 to 4.2.0 - [Release notes](https://github.com/actions/attest/releases) - [Changelog](https://github.com/actions/attest/blob/main/RELEASE.md) - [Commits](https://github.com/actions/attest/compare/a1948c3f048ba23858d222213b7c278aabede763...f7c74d28b9d84cb8768d0b8ca14a4bac6ef463e6) Updates `github/codeql-action/upload-sarif` from 4.37.0 to 4.37.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/99df26d4f13ea111d4ec1a7dddef6063f76b97e9...7188fc363630916deb702c7fdcf4e481b751f97a) Updates `crowdin/github-action` from 2.16.3 to 2.16.4 - [Release notes](https://github.com/crowdin/github-action/releases) - [Commits](https://github.com/crowdin/github-action/compare/52aa776766211d83d975df51f3b9c53c2f8ba35f...e0c8f73cdc0fafde9396e056c5038217000a32d1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: actions/setup-python dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: j178/prek-action dependency-version: 2.0.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: zizmorcore/zizmor-action dependency-version: 0.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: actions/attest dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: github/codeql-action/upload-sarif dependency-version: 4.37.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: crowdin/github-action dependency-version: 2.16.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * fix pin --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias Mair <code@mjmair.com>
313 lines
11 KiB
YAML
313 lines
11 KiB
YAML
# Playwright testing for frontend code
|
|
# Runs the following tests:
|
|
# - Playwright tests in Firefox (against compiled frontend code)
|
|
# - Playwright tests in Chromium (coverage enabled, against vite frontend code)
|
|
# - Build frontend code and upload as artifact
|
|
|
|
name: Frontend
|
|
|
|
on:
|
|
push:
|
|
branches-ignore: ["l10*", "dependabot/**", "backport/**"]
|
|
pull_request:
|
|
branches-ignore: ["l10*"]
|
|
|
|
env:
|
|
python_version: 3.12
|
|
node_version: 24
|
|
plugin_creator_version: 1.20.0
|
|
# The OS version must be set per job
|
|
server_start_sleep: 60
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
INVENTREE_DB_ENGINE: postgresql
|
|
INVENTREE_DB_NAME: inventree
|
|
INVENTREE_DB_HOST: "127.0.0.1"
|
|
INVENTREE_DB_PORT: 5432
|
|
INVENTREE_DB_USER: inventree_user
|
|
INVENTREE_DB_PASSWORD: inventree_password
|
|
INVENTREE_DEBUG: true
|
|
INVENTREE_PLUGINS_ENABLED: false
|
|
INVENTREE_MEDIA_ROOT: /home/runner/work/InvenTree/test_inventree_media
|
|
INVENTREE_STATIC_ROOT: /home/runner/work/InvenTree/test_inventree_static
|
|
INVENTREE_BACKUP_DIR: /home/runner/work/InvenTree/test_inventree_backup
|
|
INVENTREE_SITE_URL: http://localhost:8000
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
paths-filter:
|
|
name: Filter
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
frontend: ${{ steps.filter.outputs.frontend }}
|
|
force: ${{ steps.force.outputs.force }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
- uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2
|
|
id: filter
|
|
with:
|
|
filters: |
|
|
frontend:
|
|
- 'src/frontend/**'
|
|
- name: Is CI being forced?
|
|
run: echo "force=true" >> $GITHUB_OUTPUT
|
|
id: force
|
|
if: |
|
|
contains(github.event.pull_request.labels.*.name, 'dependency') ||
|
|
contains(github.event.pull_request.labels.*.name, 'full-run')
|
|
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 60
|
|
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
- name: Environment Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
npm: true
|
|
- name: Install dependencies
|
|
run: cd src/frontend && yarn install
|
|
- name: Build frontend
|
|
run: cd src/frontend && yarn run compile && yarn run lib && yarn run build
|
|
- name: Write version file - SHA
|
|
run: cd src/backend/InvenTree/web/static/web/.vite && echo "$GITHUB_SHA" > sha.txt
|
|
- name: Zip frontend
|
|
run: |
|
|
cd src/backend/InvenTree/web/static
|
|
zip -r frontend-build.zip web/ web/.vite
|
|
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: frontend-build
|
|
path: src/backend/InvenTree/web/static/web
|
|
include-hidden-files: true
|
|
|
|
firefox:
|
|
name: Tests [Firefox ${{ matrix.shard }} / 2]
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 60
|
|
needs: ["build", "paths-filter"]
|
|
if: github.ref == 'refs/heads/master' || needs.paths-filter.outputs.frontend == 'true' || needs.paths-filter.outputs.force == 'true'
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
shard: [1, 2]
|
|
services:
|
|
postgres:
|
|
image: postgres:17
|
|
env:
|
|
POSTGRES_DB: inventree
|
|
POSTGRES_USER: inventree_user
|
|
POSTGRES_PASSWORD: inventree_password
|
|
ports:
|
|
- 5432:5432
|
|
options: >-
|
|
--health-cmd "pg_isready -U testuser"
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
permissions:
|
|
contents: read # Required for actions/checkout
|
|
id-token: write # Required for GitHub OIDC
|
|
env:
|
|
VITE_COVERAGE: false
|
|
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
- name: Environment Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
npm: true
|
|
install: true
|
|
update: true
|
|
apt-dependency: gettext postgresql-client libpq-dev
|
|
pip-dependency: psycopg2
|
|
- name: Set up test data
|
|
run: |
|
|
invoke dev.setup-test -iv
|
|
invoke int.rebuild-thumbnails
|
|
- name: Install dependencies
|
|
run: invoke int.frontend-compile --extract
|
|
- name: Cache Playwright browsers
|
|
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
id: playwright-cache
|
|
with:
|
|
path: ~/.cache/ms-playwright
|
|
key: ${{ runner.os }}-playwright-${{ hashFiles('src/frontend/yarn.lock') }}
|
|
- name: Install Playwright browsers
|
|
if: steps.playwright-cache.outputs.cache-hit != 'true'
|
|
run: cd src/frontend && npx playwright install --with-deps
|
|
- name: Install Playwright OS dependencies
|
|
if: steps.playwright-cache.outputs.cache-hit == 'true'
|
|
run: cd src/frontend && npx playwright install-deps
|
|
- name: Install Sample Plugin
|
|
run: |
|
|
pip install -U inventree-plugin-creator==${{ env.plugin_creator_version }}
|
|
create-inventree-plugin --default
|
|
cd MyCustomPlugin && pip install -e . && cd frontend && npm install && npm run translate && npm run build
|
|
- name: Run Playwright tests
|
|
id: tests
|
|
run: |
|
|
cd src/frontend
|
|
cp ./tests/fixtures/playwright_custom_logo.png ../backend/InvenTree/InvenTree/static/img/playwright_custom_logo.png
|
|
cp ./tests/fixtures/playwright_custom_splash.png ../backend/InvenTree/InvenTree/static/img/playwright_custom_splash.png
|
|
invoke static
|
|
env INVENTREE_CUSTOM_SPLASH="img/playwright_custom_splash.png" INVENTREE_CUSTOM_LOGO="img/playwright_custom_logo.png" PLAYWRIGHT_BASE_URL=http://localhost:8000 npx playwright test --project=firefox --shard=${{ matrix.shard }}/2
|
|
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
if: ${{ !cancelled() && steps.tests.outcome == 'failure' }}
|
|
with:
|
|
name: playwright-report-firefox-${{ matrix.shard }}
|
|
path: src/frontend/playwright-report/
|
|
retention-days: 14
|
|
|
|
chromium:
|
|
name: Tests [Chromium ${{ matrix.shard }} / 4]
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 60
|
|
needs: ["build", "paths-filter"]
|
|
if: github.ref == 'refs/heads/master' || needs.paths-filter.outputs.frontend == 'true' || needs.paths-filter.outputs.force == 'true'
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
shard: [1, 2, 3, 4]
|
|
services:
|
|
postgres:
|
|
image: postgres:17
|
|
env:
|
|
POSTGRES_DB: inventree
|
|
POSTGRES_USER: inventree_user
|
|
POSTGRES_PASSWORD: inventree_password
|
|
ports:
|
|
- 5432:5432
|
|
options: >-
|
|
--health-cmd "pg_isready -U testuser"
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
permissions:
|
|
contents: read # Required for actions/checkout
|
|
id-token: write # Required for GitHub OIDC
|
|
|
|
env:
|
|
COVERAGE: true
|
|
VITE_COVERAGE: true
|
|
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
- name: Environment Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
npm: true
|
|
install: true
|
|
update: true
|
|
apt-dependency: gettext postgresql-client libpq-dev
|
|
pip-dependency: psycopg2
|
|
- name: Set up test data
|
|
run: |
|
|
invoke dev.setup-test -iv
|
|
invoke int.rebuild-thumbnails
|
|
- name: Install dependencies
|
|
run: invoke int.frontend-compile --extract
|
|
- name: Cache Playwright browsers
|
|
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
id: playwright-cache
|
|
with:
|
|
path: ~/.cache/ms-playwright
|
|
key: ${{ runner.os }}-playwright-${{ hashFiles('src/frontend/yarn.lock') }}
|
|
- name: Install Playwright browsers
|
|
if: steps.playwright-cache.outputs.cache-hit != 'true'
|
|
run: cd src/frontend && npx playwright install --with-deps
|
|
- name: Install Playwright OS dependencies
|
|
if: steps.playwright-cache.outputs.cache-hit == 'true'
|
|
run: cd src/frontend && npx playwright install-deps
|
|
- name: Install Sample Plugin
|
|
run: |
|
|
pip install -U inventree-plugin-creator==${{ env.plugin_creator_version }}
|
|
create-inventree-plugin --default
|
|
cd MyCustomPlugin && pip install -e . && cd frontend && npm install && npm run translate && npm run build
|
|
- name: Playwright [${{ matrix.shard }} / 4]
|
|
id: tests
|
|
run: |
|
|
cd src/frontend
|
|
npx nyc playwright test --project=chromium --shard=${{ matrix.shard }}/4
|
|
- name: Playwright Report [${{ matrix.shard }} / 4]
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
if: ${{ !cancelled() && steps.tests.outcome == 'failure' }}
|
|
with:
|
|
name: playwright-report-chromium-${{ matrix.shard }}
|
|
path: src/frontend/playwright-report/
|
|
if-no-files-found: error
|
|
retention-days: 7
|
|
- name: Upload Coverage Artifact [${{ matrix.shard }} / 4]
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
id: coverage-upload
|
|
if: ${{ !cancelled() && steps.tests.outcome != 'failure' }}
|
|
with:
|
|
name: coverage-${{ matrix.shard }}
|
|
path: src/frontend/.nyc_output/
|
|
if-no-files-found: error
|
|
include-hidden-files: true
|
|
retention-days: 1
|
|
|
|
# Recombine the coverage reports from the 4 shards, and upload to Codecov
|
|
coverage:
|
|
name: Merge coverage reports and upload to Codecov
|
|
runs-on: ubuntu-latest
|
|
needs: chromium
|
|
timeout-minutes: 30
|
|
if: always()
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Environment Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
npm: true
|
|
install: false
|
|
update: false
|
|
|
|
- name: Download Coverage Artifacts
|
|
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
|
with:
|
|
pattern: coverage-*
|
|
path: all-coverage/
|
|
merge-multiple: true
|
|
|
|
- name: Merge Coverage Reports
|
|
run: |
|
|
mkdir -p .nyc_output
|
|
cp all-coverage/*.json .nyc_output/ 2>/dev/null || true
|
|
npx nyc merge .nyc_output merged-coverage.json
|
|
npx nyc report \
|
|
--tempdir .nyc_output \
|
|
--reporter=lcov \
|
|
--reporter=text-summary \
|
|
--report-dir ./coverage \
|
|
|
|
- name: Upload coverage reports to Codecov
|
|
if: ${{ !cancelled() && github.ref == 'refs/heads/master' }}
|
|
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
slug: inventree/InvenTree
|
|
flags: web
|
|
files: ./coverage/lcov.info
|