build(deps): bump nanoid from 3.3.7 to 3.3.8 in /online-doc #24
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: Build and test rules | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "yarn" | |
- id: install | |
name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- id: test | |
name: Compile and test | |
run: yarn test |