upgrade eslint@8.52.0, eslint-plugin-import@2.29.0, eslint-plugin-jsd… #118
Workflow file for this run
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 | |
on: [push] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use Node 18 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '18' | |
# Comment the next line out | |
# if the repo uses Github Package Registry packages | |
# registry-url: 'https://npm.pkg.github.com' | |
- name: Restore packages cache | |
uses: actions/cache@v2 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Install dependencies | |
run: yarn install | |
# Comment the next lines out | |
# if the repo uses Github Package Registry packages | |
# env: | |
# NODE_AUTH_TOKEN: ${{ secrets.COMICRELIEF_GITHUB_REGISTRY_TOKEN }} | |
- name: Run Eslint | |
run: yarn lint | |
env: | |
CI: true | |
test: | |
name: Unit Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use Node 18 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '18' | |
# Comment the next line out | |
# if the repo uses Github Package Registry packages | |
# registry-url: 'https://npm.pkg.github.com' | |
- name: Restore packages cache | |
uses: actions/cache@v2 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Install dependencies | |
run: yarn install | |
# Comment the next lines out | |
# if the repo uses Github Package Registry packages | |
# env: | |
# NODE_AUTH_TOKEN: ${{ secrets.COMICRELIEF_GITHUB_REGISTRY_TOKEN }} | |
- name: Run unit tests | |
run: yarn test:unit | |
env: | |
CI: true |