Bump ws from 7.5.6 to 7.5.10 #517
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: | |
# Postsubmit CI on main. | |
push: | |
branches: [main] | |
# Presubmit CI on PRs to all branches. | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab. | |
workflow_dispatch: | |
jobs: | |
build_packages: | |
name: Build Packages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
# Ensure node version is great enough | |
- name: Use Node.js v14.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- run: npm install | |
- run: npm run prettier:check | |
- run: npm run lint | |
- run: npm run build-tsc | |
# Tests | |
- name: Test Packages | |
if: ${{ success() }} | |
run: npm run test:coverage |