Skip to content

chore(deps-dev): bump ws from 6.2.2 to 6.2.3 #56

chore(deps-dev): bump ws from 6.2.2 to 6.2.3

chore(deps-dev): bump ws from 6.2.2 to 6.2.3 #56

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Build and Deploy
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "npm"
- run: npm ci
- run: npm run build
- name: Upload pages artifacts
# https://github.com/actions/upload-pages-artifact
uses: actions/upload-pages-artifact@v1
with:
path: "build/"
deploy:
needs: build
if: github.ref == 'refs/heads/master'
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
# https://github.com/actions/deploy-pages
uses: actions/deploy-pages@v2.0.0