Skip to content

fix: changed "Twitter" to "𝕏 (Twitter)" in README.md #222

fix: changed "Twitter" to "𝕏 (Twitter)" in README.md

fix: changed "Twitter" to "𝕏 (Twitter)" in README.md #222

Workflow file for this run

name: CI
on:
- push
- pull_request
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
tests:
strategy:
matrix:
node:
- 18.x
runs-on: ubuntu-20.04
name: Node.js ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Npm update
run: npm update
- name: Npm install
run: npm install
- name: Tests
run: npm run format-check