set up name and version number for release to npm #31
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: CI | |
on: [push] | |
jobs: | |
javascript-tests: | |
runs-on: ubuntu-latest | |
env: | |
SKIP_YARN_COREPACK_CHECK: true | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.8.1 | |
cache: "yarn" | |
- run: corepack enable | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Lint | |
run: yarn lint |