Skip to content

fix(types): fixes an issue with Request type #326

fix(types): fixes an issue with Request type

fix(types): fixes an issue with Request type #326

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest']
node: ['18']
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Format check
run: pnpm format:check
- name: Build
run: pnpm build --configuration=production && pnpm build:ngx-cookie-service-ssr --configuration=production
# - name: Test
# run: pnpm test
# env:
# CI: true