Bump ws from 8.15.1 to 8.18.0 #830
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: | |
pull_request: | |
branches: | |
- staging | |
jobs: | |
ci: | |
name: Lint/Test | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./ | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout code | |
with: | |
fetch-depth: 0 | |
- name: Setup PNPM | |
uses: pnpm/action-setup@v3 | |
with: | |
package_json_file: package.json | |
- name: Read Node.js version from .tool-versions | |
id: get_node_version | |
run: | | |
echo "$(awk '/nodejs/ {print $2}' .tool-versions)" | |
echo "node_version=$(awk '/nodejs/ {print $2}' .tool-versions)" >> $GITHUB_OUTPUT | |
shell: bash | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ steps.get_node_version.outputs.node_version }} | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run TSC | |
run: pnpm tsc:ci | |
- name: Run Biome | |
run: pnpm lint:ci | |
- name: Run Jest | |
run: pnpm test:ci |