Skip to content

Commit

Permalink
πŸ’š add lint job
Browse files Browse the repository at this point in the history
  • Loading branch information
Aboudjem committed Nov 8, 2023
1 parent 989eabf commit 46da316
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/push_check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
name: Test workflow
on: push
jobs:
lint:
name: Lint sources
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]

steps:
- name: Checkout
uses: 'actions/checkout@main'
- name: Set Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Create a fake .secret file
run: echo "primary twist rack vendor diagram image used route theme frown either will" > .secret
- name: Install dependencies
run: yarn install --frozen-lockfile && yarn build
- name: Lint sources
run:
yarn lint:sol

unit_test:
name: Unit tests
runs-on: ubuntu-latest
Expand Down

0 comments on commit 46da316

Please sign in to comment.