Changes
4 changed files (+46/-18)
-
-
@@ -0,0 +1,19 @@name: Lint files on: push jobs: lint: name: Lint files runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v2 with: node-version: '16' - name: Install dependencies run: yarn install - name: Lint files run: yarn lint
-
-
-
@@ -0,0 +1,24 @@name: Test and collect coverage on: push: branches: - '**' jobs: lint: name: Test and collect coverage runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v2 with: node-version: '16' - name: Install dependencies run: yarn install - name: Run tests run: yarn test - name: Upload coverage report uses: codecov/codecov-action@v2
-
-
.travis.yml (deleted)
-
@@ -1,15 +0,0 @@language: node_js before_install: - npm i -g yarn install: - yarn script: - yarn global add codecov - npm run lint - npm test after_success: - codecov
-
-
-
@@ -1,10 +1,10 @@# slack-message-parser [](https://www.npmjs.com/package/slack-message-parser) [](https://travis-ci.com/pocka/slack-message-parser#) [](https://github.com/pocka/slack-message-parser/actions/workflows/lint.yml) [](https://github.com/pocka/slack-message-parser/actions/workflows/test.yml) [](https://github.com/pocka/slack-message-parser/actions/workflows/docs-deploy.yml) [](https://codecov.io/gh/pocka/slack-message-parser) [](https://github.com/pocka/slack-message-parser/actions) Parser library for [Slack message format](https://api.slack.com/docs/message-formatting).
-