chore(master): release remark-nomnoml 0.0.2 #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pr | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# Needed for nx-set-shas within nx-cloud-main.yml, when run on the master branch | |
permissions: | |
actions: read | |
contents: read | |
jobs: | |
Check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Asdf | |
uses: ./.github/actions/setup-tooling | |
with: | |
SetupCommand: ./setup.sh | |
- name: Install Node Modules | |
uses: ./.github/actions/setup-yarn | |
- name: lint | |
run: just lint | |
- name: test | |
run: | | |
just unittest | |
just build | |
just integrationtest | |
- name: docs | |
run: just docs |