Skip to content

Update dependency @types/webfontloader to v1.6.38 #9

Update dependency @types/webfontloader to v1.6.38

Update dependency @types/webfontloader to v1.6.38 #9

Workflow file for this run

name: build and test
on: [push]
jobs:
compliance:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Advance Security Policy as Code
uses: advanced-security/policy-as-code@v2.4.1
with:
policy: it-at-m/policy-as-code
policy-path: default.yaml
token: ${{ secrets.GITHUB_TOKEN }}
argvs: "--disable-dependabot --disable-secret-scanning --disable-code-scanning --display"
build:
runs-on: ubuntu-latest
name: Build the package
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install
env:
CYPRESS_INSTALL_BINARY: 0
- run: npm build
# Use cache to share the output across different jobs
# No need to cache node_modules because they are all bundled
- uses: actions/cache/save@v4
id: cache
with:
path: outfile.cjs
key: ${{ github.sha }}-${{ hashFiles('pnpm-lock.yaml') }}