Skip to content

Should work with yarn 2 and greater (#11) #23

Should work with yarn 2 and greater (#11)

Should work with yarn 2 and greater (#11) #23

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: ["master"]
pull_request:
branches: ["master"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install needed software
run: ./.github/scripts/Install.ps1
shell: pwsh
- name: Build module
run: ./build.ps1
shell: pwsh
- name: Run tests
run: ./.github/scripts/Tests.ps1
shell: pwsh