Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
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
  • Loading branch information
adhirajsinghchauhan committed Feb 5, 2024
1 parent 416070b commit fe35f9e
Show file tree
Hide file tree
Showing 15 changed files with 3,882 additions and 3,089 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build+deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,27 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up NodeJS v16
- name: Set up NodeJS v20
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: npm

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

- name: Add dev/test/prod API masks
run: |
echo "::add-mask::${{ secrets.API_URL_DEV }}"
echo "::add-mask::${{ secrets.API_URL_TEST }}"
echo "::add-mask::${{ secrets.API_URL_PROD }}"
- name: Build & bundle into gzipped tar
run: |
cat <<'EOF' > .env-cmdrc.js
Expand Down
Loading

0 comments on commit fe35f9e

Please sign in to comment.