This repository has been archived by the owner on Nov 11, 2024. It is now read-only.
feat: lookup auth header if token is not present in handshake #346
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" | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [master, develop] | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/[email protected]" | |
- name: "Setup Node.js" | |
uses: "actions/[email protected]" | |
with: | |
node-version: "20.x" | |
cache: "npm" | |
- name: "Install dependencies" | |
run: "npm clean-install" | |
- name: "Build" | |
run: "npm run build" | |
- run: "npm run build:typescript" |