Skip to content

chore(deps): bump js-yaml #8

chore(deps): bump js-yaml

chore(deps): bump js-yaml #8

Workflow file for this run

name: Verify
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
scope: '@workfront'
- run: npm ci --no-fund --no-audit
- run: npm run build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
scope: '@workfront'
- run: npm ci --no-fund --no-audit
- run: npm run test:sources -- --ci
- uses: codecov/codecov-action@v4
with:
directory: ./coverage/
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
scope: '@workfront'
- run: npm ci --no-fund --no-audit
- run: npm run test:typecheck