Skip to content

build(deps): bump send and express #11

build(deps): bump send and express

build(deps): bump send and express #11

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
env:
CI: true
- name: Cache incremental builds
uses: actions/cache@v3
with:
path: |
.eslintcache
**/node_modules/.cache
key: build-${{ github.head_ref }}-${{ github.sha }}
restore-keys: |
build-${{ github.head_ref }}-
build-refs/heads/main-
# project
- run: npm install
- run: npm run build