Skip to content

Update node binary

Update node binary #24

Workflow file for this run

name: Build package
on:
push:
branches: [ master ]
tags: [ '*' ]
pull_request:
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v4
with:

Check failure on line 22 in .github/workflows/CI.yml

View workflow run for this annotation

GitHub Actions / Build package

Invalid workflow file

The workflow is not valid. .github/workflows/CI.yml (Line: 22, Col: 14): Unexpected value '' .github/workflows/CI.yml (Line: 23, Col: 9): Unexpected value 'node-version'
node-version: '20.12.0'
cache: 'yarn'
- name: Git checkout
uses: actions/checkout@v3
- name: install
run: yarn --frozen-lockfile
- name: build
run: yarn build
env:
BASE_PATH: /blog/
- name: upload artifact
uses: actions/[email protected]
with:
path: '.output/public'
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/[email protected]