Skip to content

test: release beta again #174

test: release beta again

test: release beta again #174

Workflow file for this run

name: CI
on:
push:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Clean Install
run: npm ci
- name: Run lint
run: npm run lint
- name: Run test
run: npm run test
- name: Run build
run: npm run build
- name: Release
run: npx [email protected] --branches ['master', {name: 'beta', prerelease: true}]

Check failure on line 23 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}