Skip to content

feat: v6 (node update, repo structure, merged npm packages and more) #250

feat: v6 (node update, repo structure, merged npm packages and more)

feat: v6 (node update, repo structure, merged npm packages and more) #250

Workflow file for this run

name: Node CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
validate:
strategy:
matrix:
version: [20]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
- uses: actions/setup-node@16352bb09bc672a073e326c2cc1d3d7d2a3e577e
with:
node-version: ${{ matrix.version }}
cache: "npm"
- run: npm ci
- run: npm run lint