Skip to content

No node (#10)

No node (#10) #31

Workflow file for this run

name: Nonce 2D CI
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".github/.nvmrc"
cache: "npm"
- run: yarn install
- run: yarn format:check
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".github/.nvmrc"
cache: "npm"
- run: yarn install
- run: yarn build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".github/.nvmrc"
cache: "npm"
- run: yarn install
- run: yarn test