Files
website/.github/workflows/lint.yml
Sagnik PradhanandXetera 2de078558e feat: yarn migration (#425)
* feat: yarn migration, added missing deps

* fix: updated ci

* fix: linter missing dependencies

* fix: using node lts version

* fix: use node current version

* fix: netlify deployment

* fix: update scripts

* fix: netlify build configuration

Co-authored-by: Xetera <[email protected]>
2021-10-09 19:31:09 +03:00

24 lines
376 B
YAML

name: lint
on:
pull_request:
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "14.x"
- name: Install dependencies
run: yarn install
- name: Run "yarn run lint"
run: yarn run lint