build(deps-dev): bump eslint from 7.32.0 to 8.55.0 #158
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: ci | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: ['14', '16', '18'] | |
os: ['ubuntu-latest', 'macos-11', 'windows-latest'] | |
include: | |
- os: ubuntu-latest | |
NIGHTLY: nvim-linux64.tar.gz | |
NVIM_BIN_PATH: nvim-linux64/bin | |
EXTRACT: tar xzf | |
- os: macos-11 | |
NIGHTLY: nvim-macos.tar.gz | |
NVIM_BIN_PATH: nvim-macos/bin | |
EXTRACT: tar xzf | |
- os: windows-latest | |
NIGHTLY: nvim-win64.zip | |
NVIM_BIN_PATH: nvim-win64/bin | |
EXTRACT: unzip | |
runs-on: ${{ matrix.os }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version: ${{ matrix.node }} | |
- name: update npm to v8 | |
run: npm install -g 'npm@^8.8.0' | |
- name: install neovim | |
run: | | |
curl -LO 'https://github.com/neovim/neovim/releases/download/nightly/${{ matrix.NIGHTLY }}' | |
${{ matrix.EXTRACT }} ${{ matrix.NIGHTLY }} | |
echo '${{ runner.os }}' | |
- name: update path (bash) | |
if: runner.os != 'Windows' | |
run: echo "$(pwd)/${{ matrix.NVIM_BIN_PATH }}" >> $GITHUB_PATH | |
- name: update path (windows) | |
if: runner.os == 'Windows' | |
run: echo "$(pwd)/${{ matrix.NVIM_BIN_PATH }}" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
- name: install dependencies | |
run: npm ci | |
- name: build | |
run: npm run build | |
- name: lint | |
if: runner.os == 'macOS' | |
run: npm run lint | |
- name: test | |
run: | | |
echo $PATH | |
which nvim | |
nvim --version | |
npm run test-build --stream | |
- uses: codecov/codecov-action@v3 | |
if: runner.os == 'macOS' | |
with: | |
verbose: true # optional (default = false) |