mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-22 01:46:04 +00:00
24 lines
516 B
YAML
24 lines
516 B
YAML
name: Publish
|
|
|
|
on:
|
|
release:
|
|
types: [published, edited]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
cache: 'npm'
|
|
- run: npm ci
|
|
- run: npm run build
|
|
- run: npm run format:check
|
|
- run: npm run lint
|
|
- run: npm run test
|
|
- run: npm run package
|
|
- uses: JasonEtco/build-and-tag-action@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|