Skip to content

[Snyk] Security upgrade zod from 3.20.2 to 3.22.3 #70

[Snyk] Security upgrade zod from 3.20.2 to 3.22.3

[Snyk] Security upgrade zod from 3.20.2 to 3.22.3 #70

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:
branches:
- 'main'
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 15.x, 16.x, 17.x, 18.x, 19.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Lint
run: npm run lint
- name: Publish Code Coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/coverage-final.json
fail_ci_if_error: true