Skip to content

perf: setup lint

perf: setup lint #32

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Lint files
run: yarn lint
build-library:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Config Git
run: |
git config --global user.email "hmdarkfire.dev@gmail.com"
git config --global user.name "Henrique Marques"
- name: Login NPM
run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > ~/.npmrc
- name: Release
run: yarn release
env:
GITHUB_TOKEN: ${{secrets.GHP_TOKEN}}