Skip to content

chore(deps): update dependency @types/node to v20.14.11 #4032

chore(deps): update dependency @types/node to v20.14.11

chore(deps): update dependency @types/node to v20.14.11 #4032

Workflow file for this run

name: ci
on:
push:
branches: [master]
paths-ignore: ['**.md']
pull_request: {}
workflow_dispatch: {}
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 21
- run: npm install --global pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm run test
- name: Report coverage
if: ${{ github.repository_owner == 'maxmilton' }}
run: |
curl -Lo ./cc-test-reporter https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
chmod +x ./cc-test-reporter
./cc-test-reporter format-coverage -t lcov -o coverage/codeclimate.json coverage/lcov.info
./cc-test-reporter upload-coverage
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
e2e:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 21
- run: npm install --global pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm playwright install chromium
- run: pnpm run build
- run: pnpm run test:e2e --reporter=dot,html
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 21
- run: npm install --global pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm run lint