[Snyk] Security upgrade @netlify/plugin-nextjs from 3.9.2 to 4.0.0 #2003
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
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize] | |
name: CI | |
jobs: | |
install-deps: | |
if: github.repository == 'kawalcovid19/wargabantuwarga.com' | |
name: Install dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js 14.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "14.x" | |
- name: Install locked dependencies | |
run: yarn install --frozen-lockfile | |
- name: Fetch the latest data | |
run: yarn run fetch-wbw | |
- name: Cache dependencies | |
uses: actions/cache@v1 | |
id: cache-deps | |
with: | |
path: "." | |
key: ${{ github.sha }} | |
lint: | |
if: github.repository == 'kawalcovid19/wargabantuwarga.com' | |
name: ESLint | |
runs-on: ubuntu-latest | |
needs: install-deps | |
steps: | |
- name: Restore cached dependencies | |
uses: actions/cache@v1 | |
id: restore-deps | |
with: | |
path: "." | |
key: ${{ github.sha }} | |
- name: Setup Node.js 14.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "14.x" | |
- name: Lint files | |
run: yarn run lint | |
env: | |
CI: true | |
type-check: | |
if: github.repository == 'kawalcovid19/wargabantuwarga.com' | |
name: Type check | |
runs-on: ubuntu-latest | |
needs: install-deps | |
steps: | |
- name: Restore cached dependencies | |
uses: actions/cache@v1 | |
id: restore-deps | |
with: | |
path: "." | |
key: ${{ github.sha }} | |
- name: Setup Node.js 14.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "14.x" | |
- name: Perform type checking | |
run: yarn run type-check | |
env: | |
CI: true | |
test: | |
name: Unit and integration tests | |
runs-on: ubuntu-latest | |
needs: install-deps | |
steps: | |
- name: Restore cached dependencies | |
uses: actions/cache@v1 | |
id: restore-deps | |
with: | |
path: "." | |
key: ${{ github.sha }} | |
- name: Setup Node.js 14.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "14.x" | |
- name: Run Jest | |
run: yarn run test | |
env: | |
CI: true | |
- name: Upload code coverage reports to Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
e2e: | |
name: End-to-end tests | |
runs-on: ubuntu-latest | |
needs: install-deps | |
steps: | |
- name: Restore cached dependencies | |
uses: actions/cache@v1 | |
id: restore-deps | |
with: | |
path: "." | |
key: ${{ github.sha }} | |
- name: Setup Node.js 14.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "14.x" | |
- name: Install Cypress | |
run: yarn cypress install | |
- name: Run Cypress | |
uses: cypress-io/github-action@v2 | |
with: | |
record: true | |
start: yarn dev | |
wait-on: "http://localhost:3000" | |
env: | |
CI: true | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |