-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b817058
commit 965f1a4
Showing
1 changed file
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,19 +45,17 @@ jobs: | |
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.x | ||
- name: Build | ||
run: | | ||
npm ci | ||
npm run build | ||
- uses: fscarmen/[email protected] | ||
with: | ||
mode: client | ||
- name: Enable IPv6 for Docker containers | ||
run: | | ||
sudo cat /etc/docker/daemon.json | jq '. + { "ipv6": true, "fixed-cidr-v6": "2001:db8:1::/64", "experimental": true, "ip6tables": true }' > daemon.json | ||
sudo mv daemon.json /etc/docker/ | ||
sudo systemctl restart docker | ||
docker restart $(docker ps -aq) | ||
- name: Build | ||
run: | | ||
npm ci | ||
npm run build | ||
- name: Test E2E | ||
run: | | ||
npm run test:e2e |