chore(deps): bump elliptic from 6.5.5 to 6.5.7 #783
Workflow file for this run
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: 'Lint and Test' | |
on: | |
push: null | |
merge_group: | |
types: [ checks_requested ] | |
jobs: | |
eslint: | |
name: "ESLint" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-action | |
name: "Install and lint" | |
with: | |
command: eslint:check | |
prettier: | |
name: "Prettier" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-action | |
name: "Install and check formatting" | |
with: | |
command: prettier:check | |
tsc-web: | |
name: "TSC Web" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-action | |
name: "Install and tsc web" | |
with: | |
command: workspace @yestheory.family/web tsc --noEmit | |
tsc-server: | |
name: "TSC Server" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-action | |
name: "Install and tsc server" | |
with: | |
command: workspace @yestheory.family/server tsc --noEmit |