Bump @atproto/api from 0.13.20 to 0.13.23 #144
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: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
runLint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
uses: ./.github/actions/setupEnvironment | |
- name: Run Eslint | |
run: npm run lint | |
runTypecheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
uses: ./.github/actions/setupEnvironment | |
- name: Run Typescript | |
run: npm run tsc | |
runFormatter: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
uses: ./.github/actions/setupEnvironment | |
- name: Run Prettier | |
run: npm run check-format | |
runTests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
uses: ./.github/actions/setupEnvironment | |
- name: Install browsers | |
run: npm run install-browsers | |
- uses: JarvusInnovations/background-action@v1 | |
name: Start server | |
with: | |
run: npm run storybook | |
wait-on: http://localhost:6006 | |
tail: true | |
log-output-resume: stderr | |
wait-for: 1m | |
log-output: stderr,stdout | |
log-output-if: failure | |
- name: Run tests | |
run: npm run test | |
- name: Upload coverage report | |
uses: coverallsapp/github-action@v2 |