Skip to content

chore(release): v1.0.0 #42

chore(release): v1.0.0

chore(release): v1.0.0 #42

Workflow file for this run

name: Node CI
on:
# Trigger the workflow manually via the GitHub UI
workflow_dispatch:
# Trigger the workflow when a pull_request's activity type is opened,
# synchronize, or reopened.
pull_request:
# Trigger the workflow on push
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 19, 20]
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
- uses: actions/setup-node@16352bb09bc672a073e326c2cc1d3d7d2a3e577e
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- uses: bahmutov/npm-install@4a274d026feb3c5c4273ac7bbe74c90a7e07cd08
with:
install-command:
yarn --prefer-offline --frozen-lockfile --no-progress --silent
--ignore-engines
- run: yarn lint
- run: yarn test