Bump ws from 8.16.0 to 8.17.1 #265
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: | |
- master | |
- LL-v4 | |
pull_request: | |
jobs: | |
tsc: | |
name: tsc | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v2 | |
- name: Install NodeJS v16 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- name: Restore CI Cache | |
uses: actions/cache@v1 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }} | |
- name: Install Dependencies | |
run: yarn --ignore-scripts | |
- name: Compile TypeScript | |
uses: icrawl/action-tsc@v1 |