Skip to content

build(deps): bump fast-uri from 3.1.4 to 3.1.7 #1434

build(deps): bump fast-uri from 3.1.4 to 3.1.7

build(deps): bump fast-uri from 3.1.4 to 3.1.7 #1434

Workflow file for this run

name: Node CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [24.x, 25.x]
steps:
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
- name: install
run: yarn --frozen-lockfile
- name: Build
run: |
yarn build
cp CNAME build/CNAME
env:
CI: true
- name: Deploy 🚀
if: ${{ github.event_name == 'push' && matrix.node-version == '24.x'}}
uses: JamesIves/github-pages-deploy-action@v4.9.0
with:
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: build # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch