Skip to content

ci: update ado pipeline #14

ci: update ado pipeline

ci: update ado pipeline #14

Workflow file for this run

name: "CI"
on:
pull_request:
branches:
- main
- dev
push:
branches:
- main
- dev
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup project
run: |
npm install
npm run package
- name: Check lint
run: |
npm run lint
semver-title:
runs-on: ubuntu-latest
if: (github.event_name == 'pull_request')
steps:
- uses: amannn/action-semantic-pull-request@v3.4.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}