Skip to content

[Sweep GHA Fix] Fix the failing GitHub Actions #1

[Sweep GHA Fix] Fix the failing GitHub Actions

[Sweep GHA Fix] Fix the failing GitHub Actions #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js environment
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Run tests
run: pnpm run test