Update mathjs dependency to version ^14.8.2 #349
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| jobs: | |
| disord_message: | |
| runs-on: ubuntu-latest | |
| name: discord commits | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Use Node 12.x | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 12.x | |
| - name: Install NPM Dependencies (prod) | |
| run: npm install --frozen-lockfile --production | |
| - name: Send message to discord | |
| uses: Sniddl/discord-commits@v1.3 | |
| with: | |
| webhook: ${{ secrets.DISCORD_WEBHOOK }} | |
| message: "Successful commit to **{{ github.context.payload.repository.owner.name }}/{{ github.context.payload.repository.name}}**.\nDiff: {{ github.context.payload.compare }}" | |
| embed: '{ "title": "{{ commit.title }}", "description": "{{ commit.description }}", "url": "{{ commit.url }}", "author": { "name": "{{ commit.author.name }} ({{ commit.author.username }})", "icon_url": "https://avatars.io/gravatar/{{ commit.author.email }}"} }' | |
| last-commit-only: false |