Skip to content

v9.0.0-alpha.1

v9.0.0-alpha.1 #5

Workflow file for this run

name: test
# On every pull request, but only on push to master
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
test-node:
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
# NOTE: Pin official GitHub actions to a version number, pin third-party actions to a SHA1.
# https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-third-party-actions
steps:
- uses: actions/[email protected]
- name: Use Node.js
uses: actions/[email protected]
with:
node-version: '18.x'
- name: Install dependencies
run: |
yarn bootstrap
- name: Run tests
run: |
yarn test