Skip to content

Pipeline

Pipeline #10

Workflow file for this run

name: Pipeline
run-name: Pipeline
on: [push]
jobs:
pipeline:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Starting Node.js ${{ matrix.node-version}}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: build
run: yarn build
- name: lint
run: yarn lint:ts