Skip to content

Bump pbkdf2 from 3.1.2 to 3.1.3 #3891

Bump pbkdf2 from 3.1.2 to 3.1.3

Bump pbkdf2 from 3.1.2 to 3.1.3 #3891

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Setup Spin
uses: fermyon/actions/spin/setup@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Install bart
run: |
curl -LOs https://github.com/fermyon/bartholomew/releases/download/v0.8.0/bart
chmod +x bart
mv bart /usr/local/bin
- name: Check Docs
run: |
bart check --shortcodes shortcodes content/* && bart check --shortcodes shortcodes content/**/*
- name: Install npm packages
run: |
npm ci
npm ci --prefix ./spin-up-hub
- name: Build app
run: |
spin build
# TODO: re-enable after figuring out how to confgure the current linting tool; or choose another.
# By default, the current tool appears very aggressive, presenting errors for eg
# multiple consecutive new-lines, non-conforming title capitalization, etc
#
# - name: Lint markdown
# run: |
# npm run lint-markdown
- name: Run npm tests
run: |
npm test