Skip to content

chore: bumps version of packages and node for github actions #31

chore: bumps version of packages and node for github actions

chore: bumps version of packages and node for github actions #31

Workflow file for this run

name: Pull request checks
on: [pull_request]
jobs:
run-tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: yarn install
- name: Build package
run: yarn build
- name: Run tests
run: yarn test