Skip to content

Bump the development-dependencies group in /link-shortener with 2 updates #367

Bump the development-dependencies group in /link-shortener with 2 updates

Bump the development-dependencies group in /link-shortener with 2 updates #367

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Run Tests on Worker
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
working-directory: ./link-shortener
- name: Run tests
run: npm test
working-directory: ./link-shortener