Skip to content

chore(deps): bump yargs from 18.0.0 to 18.1.0 in /deployer-js in the … #629

chore(deps): bump yargs from 18.0.0 to 18.1.0 in /deployer-js in the …

chore(deps): bump yargs from 18.0.0 to 18.1.0 in /deployer-js in the … #629

Workflow file for this run

# 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: Test
on:
push:
branches:
- main
pull_request:
# No GITHUB_TOKEN permissions, as we only use it to increase API limit.
permissions: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout (dex)
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup Node (dex)
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version-file: .nvmrc
cache: npm
- name: Install (dex)
run: npm ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Lint prettier
run: npm run prettier-check
- name: Lint ESLint
run: npm run eslint
- name: Check TypeScript
run: npm run check:tsc
test:
runs-on: ubuntu-latest
steps:
- name: Checkout (dex)
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup Node (dex)
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version-file: .nvmrc
cache: npm
- name: Install (dex)
run: npm ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Test
run: npm run test:coverage
env:
FORCE_COLOR: 1