build(deps): Bump date-fns from 3.6.0 to 4.1.0 in /ui #56
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build User Tasks | |
on: | |
pull_request: | |
workflow_call: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
cache-dependency-path: package-lock.json | |
node-version: 20 | |
- name: Install Dependencies | |
run: npm install | |
- name: Lint | |
run: npm run lint -ws | |
- name: Build | |
run: npm run build -ws |