Skip to content

chore: update workflows #40

chore: update workflows

chore: update workflows #40

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
paths-ignore:
- "*.{md,txt}"
- LICENSE
- .*config
- .vscode
tags-ignore:
- "*"
pull_request:
branches:
- "*"
paths-ignore:
- "*.{md,txt}"
- LICENSE
- .*config
- .vscode
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- "18"
- "19"
- "20"
steps:
- uses: actions/checkout@v3
- name: Use Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build --noEmit
- name: Lint
run: yarn lint