1234567891011121314151617181920212223 |
- name: "Publish"
- on:
- release:
- types: [created]
- concurrency: ${{ github.workflow }}-${{ github.ref }}
- jobs:
- lint:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- node-version: [18.x]
- steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-node@v3
- with:
- node-version: ${{ matrix.node-version }}
- - name: Install dependencies
- run: npm ci
- - name: Publish to npm
- run: echo TODO
|