chore(deps): bump cookie and express in /website #262
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: Website | |
on: | |
pull_request: | |
paths: | |
- website/** | |
- .github/workflows/website.yml | |
push: | |
branches-ignore: | |
- dependabot/** | |
paths: | |
- website/** | |
- .github/workflows/website.yml | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout | |
uses: actions/checkout@v3 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
cache-dependency-path: website/package-lock.json | |
- name: 📥 Download deps | |
run: | | |
cd website | |
npm ci | |
- name: Run build | |
run: | | |
cd website | |
npm run build |