Skip to content

chore(deps): update dependency @types/jest to v29 #862

chore(deps): update dependency @types/jest to v29

chore(deps): update dependency @types/jest to v29 #862

Workflow file for this run

name: CI
on: [push]
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn test:ci
example-angular:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn install --frozen-lockfile
working-directory: examples/example-angular
- run: yarn build
working-directory: examples/example-angular
- run: yarn test
working-directory: examples/example-angular