Skip to content

Bump follow-redirects from 1.15.3 to 1.15.4 (#74) #42

Bump follow-redirects from 1.15.3 to 1.15.4 (#74)

Bump follow-redirects from 1.15.3 to 1.15.4 (#74) #42

Workflow file for this run

# Reference: <https://help.github.com/en/actions/language-and-framework-guides/using-nodejs-with-github-actions>
name: Build
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "npm"
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Restore Cache
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Build
run: npm run build:dev
- name: Test
run: npm run test