Skip to content

chore: roll node forward #109

chore: roll node forward

chore: roll node forward #109

Workflow file for this run

# @info
# main & pull_request jobs cannot de-dupe their workflow configuration :(
# https://github.community/t5/GitHub-Actions/Start-a-workflow-from-another-workflow/td-p/37586
name: next
on:
push:
branches:
- next
jobs:
build:
runs-on: ubuntu-latest
steps:
# https://github.com/JamesIves/github-pages-deploy-action#getting-started-airplane
- name: checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
# https://github.com/denolib/setup-deno
- uses: denolib/setup-deno@master
with:
deno-version: 1.38.2
- name: check
run: ./rad check
- name: site
run: ./rad -l info site
# release
- name: setup-node
uses: actions/setup-node@v3
with: 20

Check failure on line 31 in .github/workflows/next.yml

View workflow run for this annotation

GitHub Actions / next

Invalid workflow file

The workflow is not valid. .github/workflows/next.yml (Line: 31, Col: 15): Unexpected value '20'
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm init -y \
&& \
npm install -D \
"@semantic-release/commit-analyzer" \
"@semantic-release/release-notes-generator" \
"@semantic-release/github" \
"@semantic-release/git" \
"@semantic-release/exec" \
&& \
npx semantic-release --dry-run