Skip to content

Bump tar from 6.1.14 to 6.2.1 (#32) #107

Bump tar from 6.1.14 to 6.2.1 (#32)

Bump tar from 6.1.14 to 6.2.1 (#32) #107

Workflow file for this run

name: Test the latest commit
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v1
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint