Skip to content

chore(deps): update dependency eslint to v8.57.0 - autoclosed #86

chore(deps): update dependency eslint to v8.57.0 - autoclosed

chore(deps): update dependency eslint to v8.57.0 - autoclosed #86

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, 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: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x ]
steps:
- uses: actions/checkout@v2
- uses: pnpm/[email protected]
with:
version: 6.20.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Cache .pnpm-store # From https://pnpm.io/continuous-integration
uses: actions/cache@v1
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }}
- run: pnpm install
- run: pnpm test
working-directory: ./
- run: pnpm build
- name: "Automated Version Bump"
id: version-bump
uses: "phips28/[email protected]"
with:
tag-prefix: 'v'
env:
GITHUB_TOKEN: ${{ secrets.GIT_HUB_TOKEN }}