Merge pull request #437 from Soham1803/feat/quaternion_prop_to_propsT… #381
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Node.js CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Build | |
needs: install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
cache: 'yarn' | |
node-version: 16.x | |
- run: yarn install | |
- run: npm i -g npm@latest | |
- run: npm run build | |
eslint: | |
name: ESLint | |
needs: install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
cache: 'yarn' | |
node-version: 16.x | |
- run: yarn install | |
- run: npm i -g npm@latest | |
- run: npm run eslint | |
install: | |
name: Install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
cache: 'yarn' | |
node-version: 16.x | |
- run: yarn install | |
prettier: | |
name: Prettier | |
needs: install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
cache: 'yarn' | |
node-version: 16.x | |
- run: yarn install | |
- run: npm i -g npm@latest | |
- run: npm run prettier |