Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: merge staging to master #28

Merged
merged 1 commit into from
Jul 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ build:linux:
- >
nix-shell --arg ci true --run $'
npm test -- --ci --coverage;
npm run bench;
'
artifacts:
when: always
Expand All @@ -149,6 +150,7 @@ build:linux:
coverage_report:
coverage_format: cobertura
path: ./tmp/coverage/cobertura-coverage.xml
metrics: ./benches/results/metrics.txt
coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/'
rules:
# Runs on staging commits and ignores version commits
Expand All @@ -169,6 +171,7 @@ build:windows:
- npm install --ignore-scripts
- $env:Path = "$(npm root)\.bin;" + $env:Path
- npm test -- --ci --coverage
- npm run bench
artifacts:
when: always
reports:
Expand All @@ -177,6 +180,7 @@ build:windows:
coverage_report:
coverage_format: cobertura
path: ./tmp/coverage/cobertura-coverage.xml
metrics: ./benches/results/metrics.txt
coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/'
rules:
# Runs on staging commits and ignores version commits
Expand All @@ -197,6 +201,7 @@ build:macos:
- npm install --ignore-scripts
- export PATH="$(npm root)/.bin:$PATH"
- npm test -- --ci --coverage
- npm run bench
artifacts:
when: always
reports:
Expand All @@ -205,6 +210,7 @@ build:macos:
coverage_report:
coverage_format: cobertura
path: ./tmp/coverage/cobertura-coverage.xml
metrics: ./benches/results/metrics.txt
coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/'
rules:
# Runs on staging commits and ignores version commits
Expand Down