Skip to content

Commit

Permalink
Address sandbox deployment issue (#1190)
Browse files Browse the repository at this point in the history
* Changes to pass sandbox deployment issues

* Remove explicit install of npm during deploy
  • Loading branch information
howard-e authored Aug 19, 2024
1 parent 721d04e commit 39033e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions deploy/roles/application/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
path: '{{source_dir}}/server/scripts'
mode: '0777'
recurse: yes
become: yes
when: deployment_mode != 'development'
notify: "restart server"

Expand All @@ -25,6 +26,7 @@
path: '{{source_dir}}/server/resources'
mode: '0777'
recurse: yes
become: yes
when: deployment_mode != 'development'
notify: "restart server"

Expand All @@ -33,6 +35,7 @@
path: '{{source_dir}}/client/resources'
mode: '0777'
recurse: yes
become: yes
when: deployment_mode != 'development'
notify: "restart server"

Expand Down Expand Up @@ -86,6 +89,7 @@

- name: Import latest tests and harness from w3c/aria-at
shell: ../deploy/scripts/export-and-exec.sh {{environment_config.dest}} node ./scripts/import-tests/index.js
become: yes
args:
chdir: '{{source_dir}}/server'

Expand Down
1 change: 0 additions & 1 deletion deploy/roles/nodejs/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
name:
- nodejs
- yarn
- npm
state: present
become: yes

Expand Down

0 comments on commit 39033e6

Please sign in to comment.