Skip to content

Fix: GitHub RSA key was changed and prevented this action from working #289

Fix: GitHub RSA key was changed and prevented this action from working

Fix: GitHub RSA key was changed and prevented this action from working #289

Workflow file for this run

name: Test build
on:
push:
pull_request:
jobs:
build:
name: Test build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Ensure build was committed (necessary for Github Actions)
run: "[[ -z $(git status -s dist ':^dist/src') ]]"
- name: "[Test] Unit tests"
run: yarn test