Skip to content

Bump ws from 8.13.0 to 8.17.1 #48

Bump ws from 8.13.0 to 8.17.1

Bump ws from 8.13.0 to 8.17.1 #48

Workflow file for this run

name: Build 11ty
on:
pull_request:
types:
- closed
branches:
- 'main'
jobs:
if_merged:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: latest
- name: Install and build
run: |
npm install
npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: site
publish_branch: production
github_token: ${{ secrets.GITHUB_TOKEN }}