1
0

publish.yml 460 B

1234567891011121314151617181920212223
  1. name: "Publish"
  2. on:
  3. release:
  4. types: [created]
  5. concurrency: ${{ github.workflow }}-${{ github.ref }}
  6. jobs:
  7. lint:
  8. runs-on: ubuntu-latest
  9. strategy:
  10. matrix:
  11. node-version: [18.x]
  12. steps:
  13. - uses: actions/checkout@v3
  14. - uses: actions/setup-node@v3
  15. with:
  16. node-version: ${{ matrix.node-version }}
  17. - name: Install dependencies
  18. run: npm ci
  19. - name: Publish to npm
  20. run: echo TODO