fix: add window check in saveSecret and loadSecret functions to preve… #5
This file contains hidden or 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
| name: Frontend CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'app/**' | |
| - 'components/**' | |
| - 'lib/**' | |
| - 'package.json' | |
| - 'next.config.mjs' | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - 'app/**' | |
| - 'components/**' | |
| - 'lib/**' | |
| - 'package.json' | |
| - 'next.config.mjs' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci || npm install | |
| - name: Build Next.js Application | |
| run: npm run build |