Merge pull request #232 from seguri/patch-1 #17
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: Editors | |
on: | |
push: | |
branches: | |
- main | |
- staging | |
- trying | |
pull_request: | |
jobs: | |
vscode: | |
name: Visual Studio Code | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: editors/code | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: npm | |
cache-dependency-path: '**/package-lock.json' | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run package |