Skip to content

Merge pull request #4 from sslava/examples-docs #19

Merge pull request #4 from sslava/examples-docs

Merge pull request #4 from sslava/examples-docs #19

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
node: ["22.0.0"]
platform: [ubuntu-latest]
name: Node v${{matrix.node}} ((${{matrix.platform}}))
runs-on: ${{matrix.platform}}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{matrix.node}}
- name: install dependencies
run: yarn install
- name: lint code
run: yarn lint
- name: build project
run: yarn build
- name: run tests
run: yarn test