Skip to content

chore(deps-dev): bump follow-redirects from 1.15.2 to 1.15.6 #53

chore(deps-dev): bump follow-redirects from 1.15.2 to 1.15.6

chore(deps-dev): bump follow-redirects from 1.15.2 to 1.15.6 #53

Workflow file for this run

name: Build
on:
push:
branches: [master]
paths:
- 'src/**/*'
- 'projects/**/*'
- '.github/workflows/build.yml'
pull_request:
branches: [master]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Install Dependencies
run: npm i --force
- name: build-lib
run: npm run build
- name: release
if: github.ref == 'refs/heads/master'
run: npm run semantic-release || true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}