Skip to content

Commit fe35f9e

Browse files
Updated dependencies
AutoPrefixer 10.4.13 -> 10.4.17 cssnano 5.1.14 -> 6.0.3 DOMPurify 2.4.3 -> 3.0.8 Firebase 9.16.0 -> 10.8.0 FontAwesome 6.2.1 -> 6.5.1 GSAP 3.11.4 -> 3.12.5 PostCSS 8.4.21 -> 8.4.33 Preact 10.13.1 -> 10.19.3 React Timeago 7.1.0 -> 7.2.0 Sass 1.57.1 -> 1.70.0 TailwindCSS 3.2.4 -> 3.4.1 TypeScript 4.9.4 -> 5.3.3
1 parent 416070b commit fe35f9e

15 files changed

+3882
-3089
lines changed

.github/workflows/build+deploy.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,27 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v3
2424

25-
- name: Set up NodeJS v16
25+
- name: Set up NodeJS v20
2626
uses: actions/setup-node@v3
2727
with:
28-
node-version: 16
28+
node-version: 20
2929
cache: npm
3030

3131
- name: Cache .next
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: ${{ github.workspace }}/.next/cache
3535
# Generate a new cache whenever packages or source files change
3636
key: ${{ runner.os }}-nextjs-${{ hashFiles('package-lock.json') }}-${{ hashFiles('public/**', 'src/**', '*.m?js', 'tsconfig.json', '!.*rc.m?js') }}
3737
# If source files changed but packages didn't, rebuild from a prior cache
3838
restore-keys: ${{ runner.os }}-nextjs-${{ hashFiles('package-lock.json') }}-
3939

40+
- name: Add dev/test/prod API masks
41+
run: |
42+
echo "::add-mask::${{ secrets.API_URL_DEV }}"
43+
echo "::add-mask::${{ secrets.API_URL_TEST }}"
44+
echo "::add-mask::${{ secrets.API_URL_PROD }}"
45+
4046
- name: Build & bundle into gzipped tar
4147
run: |
4248
cat <<'EOF' > .env-cmdrc.js

0 commit comments

Comments
 (0)