Merge pull request #200 from dclstn/dependabot/npm_and_yarn/types/chr… #164
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: Node.js CI | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
node-version: 16 | |
registry-url: https://registry.npmjs.org | |
cache: 'npm' | |
- run: node --version | |
- run: npm --version | |
- run: npm cache clean --force | |
- name: Install Node Dependencies | |
run: npm install --no-package-lock | |
- name: Linting | |
run: npm run lint | |
- name: Build | |
run: npm run build |