Update workflows #24
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: Feat Branch Deploy | |
on: | |
push: | |
branches: | |
- feat/* | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get update | |
- run: sudo apt-get install -y libkrb5-dev | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install node_modules | |
run: npm install | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run test | |
build: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create pull request | |
run: | | |
gh_pr_up() { | |
gh pr create --draft $* --template ".github/pull_request.md" || gh pr edit $* | |
} | |
gh_pr_up --base master --title "${BRANCH_NAME}" --body "Description" |