Drop all storybook related scripts #34
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: JavaScript Testing | |
on: | |
pull_request: | |
paths: | |
- "webpack/**" | |
- "package.json" | |
- ".github/workflows/js_tests.yml" | |
jobs: | |
test_js: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout plugin | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: Install plugin npm dependencies | |
run: npm install | |
- name: Run plugin linter | |
run: npm run lint | |
- name: Run plugin tests | |
run: npm run test | |
- name: Publish Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |