feat: notify user about unsaved file before build and test (#106) #83
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
name: Test and Deploy | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- name: "Prettier: Validate code formatting" | |
run: npm run format:check | |
- name: "ESLint: Validate code for errors" | |
run: npm run lint | |
deploy: | |
runs-on: ubuntu-latest | |
needs: test | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- uses: amondnet/vercel-action@v25 | |
id: now-deployment-staging | |
if: github.ref != 'refs/heads/main' | |
with: | |
vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} | |
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} | |
scope: ${{ secrets.VERCEL_SCOPE }} | |
alias-domains: | | |
nujan-ide-{{BRANCH}}.vercel.app | |
- uses: amondnet/vercel-action@v25 | |
id: now-deployment-production | |
if: github.ref == 'refs/heads/main' | |
with: | |
vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} | |
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} | |
scope: ${{ secrets.VERCEL_SCOPE }} | |
vercel-args: "${{ github.ref == 'refs/heads/main' && '--prod' || '' }}" | |
alias-domains: | | |
nujan-ide.vercel.app | |
ide.nujan.io |