build(deps-dev): bump @types/react from 18.2.8 to 18.2.17 #38
Workflow file for this run
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: YehezGun CI | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
next: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Run Prettier | |
run: yarn format:ci | |
- name: Run ESLint | |
run: yarn lint | |
- name: Run Unit Test | |
run: yarn test:ci | |
- name: Run TypeScript | |
run: yarn typescript:ci | |
- name: Run unit tests in CI environment | |
run: yarn test:ci | |
- name: Build the application | |
run: yarn build | |
env: | |
UMAMI_WEB_ID: ${{secrets.UMAMI_WEB_ID}} | |
UMAMI_SRC: ${{secrets.UMAMI_SRC}} | |
SANITY_DATASET: ${{secrets.SANITY_DATASET}} | |
SANITY_PROJECTID: ${{secrets.SANITY_PROJECT_ID}} |