Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
142
Issues
142
List
Board
Labels
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
purescript-gargantext
Commits
6273c546
Verified
Commit
6273c546
authored
Sep 27, 2024
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CI] run npm ci which cleans installs a project
parent
0d90ff5b
Pipeline
#6720
failed with stages
in 11 minutes and 51 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
.gitlab-ci.yml
.gitlab-ci.yml
+2
-0
flake.nix
flake.nix
+11
-0
No files found.
.gitlab-ci.yml
View file @
6273c546
...
...
@@ -33,6 +33,7 @@ compile:
script
:
-
nix --extra-experimental-features "nix-command flakes" run .#compile
-
nix --extra-experimental-features "nix-command flakes" run .#compile
test
:
stage
:
test
...
...
@@ -46,6 +47,7 @@ test:
-
.spago/
script
:
-
nix --extra-experimental-features "nix-command flakes" run .#compile
-
nix --extra-experimental-features "nix-command flakes" run .#test-ps
-
nix-collect-garbage --delete-older-than 14d
flake.nix
View file @
6273c546
...
...
@@ -60,6 +60,17 @@
in
{
packages
=
rec
{
ci
=
pkgs
.
writeShellApplication
{
name
=
"install"
;
runtimeInputs
=
dependencies
;
text
=
''
set -e
echo "Installing JS Dependencies (CI)"
# https://docs.npmjs.com/cli/v9/commands/npm-ci
npm ci
''
;
};
install
=
pkgs
.
writeShellApplication
{
name
=
"install"
;
runtimeInputs
=
dependencies
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment