This repository has been archived by the owner on Oct 26, 2024. It is now read-only.
Updating config and move package to organization #52
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: Lint | |
on: [push] | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version-file: ".node-version" | |
cache: "yarn" | |
- run: | | |
yarn install --silent --non-interactive | |
yarn lint |