Skip to content

action: atualizando changelog #429

action: atualizando changelog

action: atualizando changelog #429

Workflow file for this run

name: 'test lint and jest'
concurrency:
group: test-lint-${{ github.ref_name }}
cancel-in-progress: true
on:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
test-linter-jest:
runs-on: ubuntu-latest
if: "!startsWith(github.event.head_commit.message, 'Merge') || github.event.pull_request.draft == false"
steps:
- name: Checkout Github
uses: actions/checkout@v3.1.0
- name: Set Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install yarn
run: npm install -g yarn
- name: Install Dependencies
run: yarn
- name: Run All
run: npm run all