Skip to content

Fix package.json config #269

Fix package.json config

Fix package.json config #269

Workflow file for this run

---
name: tests
on:
push:
branches-ignore:
- 'development/**'
permissions:
packages: write
id-token: write
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: yarn
node-version: '16'
registry-url: https://npm.pkg.github.com
- name: install dependencies
run: yarn install --frozen-lockfile
- name: lint markdown
run: yarn lint_md
- name: lint javascript
run: yarn lint
- name: Set development version
run: yarn version --no-git-tag-version --new-version "0.0.0-sha.${{ github.sha }}"
- name: Publish development version
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{ github.token }}