Skip to content

fix(deps-dev): bump @vercel/ncc from 0.34.0 to 0.38.1 #425

fix(deps-dev): bump @vercel/ncc from 0.34.0 to 0.38.1

fix(deps-dev): bump @vercel/ncc from 0.34.0 to 0.38.1 #425

Workflow file for this run

name: 'test'
on:
pull_request:
paths:
- '**/*.js'
- '**/*.ts'
- '**/package.json'
- '**/package-lock.json'
push:
branches:
- main
paths:
- '**/*.js'
- '**/*.ts'
- '**/package.json'
- '**/package-lock.json'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js using asdf
uses: asdf-vm/actions/[email protected]
env:
NODEJS_CHECK_SIGNATURES: 'no'
- name: Cache Node.js modules
uses: actions/cache@v3
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: npm ci
- run: npm run test
env:
CI: true
- run: npm run build