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

Surveys peer deps #92

Merged
merged 11 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
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 .changeset/beige-horses-beam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@lookit/lookit-initjspsych": patch
"@lookit/surveys": patch
---

Moved @lookit/data to peer dependency.
5 changes: 5 additions & 0 deletions .changeset/hip-drinks-pump.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@lookit/style": patch
---

Update consent video style
24 changes: 14 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,26 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y libpango1.0-dev

- name: Install NPM dependencies
run: npm ci

- name: Create environment file
run: printenv > .env
env:
DEBUG: "false"
LOCAL_DOWNLOAD: "false"

- name: Build packages
run: npm run build
run: npm install --package-lock

- name: Lint project
run: npm run lint

- name: Format project
run: npm run format

- name: Build packages
run: npm run build

- name: Test project
run: npm test

- name: Check for clean git tree
shell: bash
run: |
if [[ $(git status -s) ]]
then
echo "The following files have changed:"
git status -s
exit 1
fi
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Create environment file
run: printenv > .env
env:
DEBUG: "false"
LOCAL_DOWNLOAD: "false"

- name: Build packages
run: npm run build

Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
npm run fix
lint-staged
Loading