Changed: Update dependency execa to v9 #514
This file contains hidden or 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: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
- name: NPM Build and Test | |
run: | | |
npm ci | |
npm run tsc | |
npm run release | |
env: | |
GITHUB_TOKEN: ${{ secrets.G_BOT_TOKEN }} | |
DOCKER_USERNAME: fabulator | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} |