Merge pull request #29 from jet2jet/dependabot/npm_and_yarn/word-wrap… #17
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: Main CI | |
on: | |
push: | |
env: | |
NODE_VERSION: 14 | |
NPM_VERSION: 7 | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: npm | |
- name: Setup npm | |
run: npm i -g npm@${{ env.NPM_VERSION }} | |
- name: Cache node modules | |
id: node_modules_cache | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: node_modules | |
key: ${{ env.cache-name }}-${{ hashFiles('package-lock.json') }} | |
- name: Install | |
if: steps.node_modules_cache.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: Lint check | |
run: npm run lint | |
- name: Test | |
run: npm run test |