This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
Merge pull request #70 from tom-james-watson/dependabot/npm_and_yarn/… #116
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
on: [push,pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install signalling deps | |
run: cd signalling && npm i | |
- name: Lint signalling | |
run: cd signalling && npm run lint | |
- name: Build signalling | |
run: cd signalling && npm run build | |
- name: Install www deps | |
run: cd www && npm i | |
- name: Lint www | |
run: cd www && npm run lint | |
- name: Type check www | |
run: cd www && npm run type-check |