feat: update development container packages #891
This file contains hidden or 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: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - development | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Linelint | |
| uses: fernandrone/linelint@master | |
| - name: Set up Node | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 24.14.0 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Prettier | |
| run: npm run format:check | |
| - name: Vale | |
| run: | | |
| curl -L -o vale.tar.gz "https://github.com/errata-ai/vale/releases/download/v3.13.0/vale_3.13.0_Linux_64-bit.tar.gz" | |
| tar -xzf vale.tar.gz | |
| sudo mv vale /usr/local/bin/vale | |
| rm vale.tar.gz | |
| vale --version | |
| npm run prose:check |