chore(deps): bump termx-markup from 1.1.0 to 2.0.2 #153
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: Build Test | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
env: | |
NPM_TOKEN: "" | |
jobs: | |
run-tests: | |
name: Run Build Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
name: Setup Node.js | |
with: | |
node-version: 18 | |
cache: yarn | |
- name: Install dependencies | |
run: ./.yarn/yarn.cjs install --immutable --mode=skip-build | |
- name: Run TypeScript | |
run: ./.yarn/yarn.cjs test:tsc | |
- name: Run Linter | |
run: ./.yarn/yarn.cjs test:eslint | |
- name: Run Prettier Check | |
run: ./.yarn/yarn.cjs test:prettier | |
- name: Attempt Build | |
run: ./.yarn/yarn.cjs build |