This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
chore: cleanup workflows #49
Workflow file for this run
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: Typescript | |
on: [push, pull_request] | |
# This will cancel previous runs when a branch or PR is updated | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
eslint: | |
name: Eslint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
uses: ./.github/actions/setup | |
with: | |
working-directory: ./acvm_js | |
- name: Run eslint | |
working-directory: ./acvm_js | |
run: yarn lint |