Bump eslint from 7.32.0 to 9.0.0 in /src/language-service #5005
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: Language Sevice | |
on: | |
push: | |
paths: | |
- "src/language-service/*" | |
- ".github/*" | |
pull_request: | |
paths: | |
- "src/language-service/*" | |
- ".github/*" | |
jobs: | |
language-service: | |
name: Language Service | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Check out code from GitHub | |
uses: actions/checkout@v4 | |
- name: 🏗 Set up NodeJS | |
uses: actions/[email protected] | |
with: | |
node-version: "16" | |
- name: 🏗 Install NodeJS packages | |
working-directory: src/language-service | |
run: npm install | |
- name: 🚀 Run Linter | |
working-directory: src/language-service | |
run: npm run lint | |
- name: 🚀 Build Schema | |
working-directory: src/language-service | |
run: npm run schema | |
- name: 🚀 Run Compile | |
working-directory: src/language-service | |
run: npm run compile | |
- name: 🏗 Create .npmrc | |
if: success() && github.ref == 'refs/heads/master' | |
run: | |
echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" >> ~/.npmrc | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: 🚀 Publish to NPM Registry | |
if: success() && github.ref == 'refs/heads/master' | |
env: | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: | | |
npm publish src/language-service | |
# - name: NPM Publish to Registry | |
# uses: actions/npm@master | |
# if: success() && github.ref == 'refs/heads/master' | |
# env: | |
# NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# with: | |
# args: publish src/language-service |