Bump braces from 3.0.2 to 3.0.3 #17
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: ryu1kn/csv-writer | |
on: | |
push: | |
branches: | |
- "**/*" | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
cache: npm | |
node-version: '14.5' | |
- run: npm install | |
- run: npm run lint | |
- run: npm run test:it | |
- run: npm run coverage | |
# FIXME: coveralls fails to report the result | |
#- run: cat coverage/lcov.info | node_modules/.bin/coveralls | |
# FIXME: CodeClimate fails to analyze/report | |
#- run: |- | |
# curl -L https://github.com/codeclimate/codeclimate/archive/master.tar.gz | tar xvz | |
# cd codeclimate-* && sudo make install | |
# codeclimate analyze | |
# env: | |
# CODECLIMATE_REPO_TOKEN: ${{ secrets.CODECLIMATE_REPO_TOKEN }} |