Skip to content

Bump ws from 7.5.9 to 7.5.10 #9

Bump ws from 7.5.9 to 7.5.10

Bump ws from 7.5.9 to 7.5.10 #9

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
- run: npm install -g pnpm
- run: pnpm i
- run: pnpm build
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/master'
uses: actions/upload-pages-artifact@v1
with:
path: build
deploy:
if: github.ref == 'refs/heads/master'
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2