Skip to content

chore(deps): bump @types/react from 18.2.21 to 18.2.28 #233

chore(deps): bump @types/react from 18.2.21 to 18.2.28

chore(deps): bump @types/react from 18.2.21 to 18.2.28 #233

Workflow file for this run

name: pr check
on: [pull_request]
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: installing node@18
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: 18.16.1
- name: installing dependencies
run: npm ci
- name: linting
run: npm run lint
- name: formatting
run: npm run format
- name: build
run: npm run build
- name: unit test
run: npm run test
- name: prepare test e2e
run: npm run start & sleep 10
- name: test e2e
run: npm run test:e2e-ci