Skip to content

ci: improve overall #287

ci: improve overall

ci: improve overall #287

Workflow file for this run

name: cd
on:
push:
branches:
- v3
jobs:
npm:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Get Node version from Node manifest
run: |
echo "NODE_VER=$(jq -r '.engines.node' package.json | sed 's/v//' )" >> $GITHUB_ENV
- name: Setup Node
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VER }}
cache: "npm"
- name: Enable corepack
run: corepack enable
- name: Install dependencies
run: npm ci
- name: Publish to NPM
uses: JS-DevTools/npm-publish@v2
with:

Check failure on line 28 in .github/workflows/cd.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cd.yml

Invalid workflow file

You have an error in your yaml syntax on line 28
token: ${{ secrets.NPM_TOKEN }}
tag: stable