Fix Github action (take two)

This commit is contained in:
0x1eef 2023-07-25 14:25:26 -03:00
parent d5279d04db
commit e866daaeb3

View file

@ -18,9 +18,9 @@ jobs:
- name: Prepare environment - name: Prepare environment
uses: './.github/actions/prepare-env' uses: './.github/actions/prepare-env'
- name: eslint - name: eslint
run: npm run eslint run: npm exec eslint -- src/js/
- name: rubocop - name: rubocop
run: bundle exec rake linter:rubocop run: bundle exec rubocop
prettier: prettier:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -29,7 +29,7 @@ jobs:
- name: Prepare environment - name: Prepare environment
uses: './.github/actions/prepare-env' uses: './.github/actions/prepare-env'
- name: prettier - name: prettier
run: npm run prettier run: npm exec prettier -- --check src/js/
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps: