chore(deps): update dependency node-red to v4.0.8 (#276) #930
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Release | |
# yamllint disable-line rule:truthy | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mskelton/setup-yarn@v3 | |
with: | |
node-version: lts/* | |
cache: yarn | |
- name: Lint | |
run: yarn run lint | |
- name: Test | |
run: yarn run test | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: yarn run release |