Skip to content

Bump three from 0.127.0 to 0.154.0 #18

Bump three from 0.127.0 to 0.154.0

Bump three from 0.127.0 to 0.154.0 #18

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: Node.js CI
permissions:
id-token: write
pages: write
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run build --if-present
- uses: actions/upload-pages-artifact@v1
with:
path: ./public
- uses: actions/deploy-pages@v2