This repository was archived by the owner on Apr 16, 2026. It is now read-only.
[gas mode] Define text/x-gas mime type #326
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: main | |
| on: [push, pull_request] | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| name: Build and test | |
| steps: | |
| - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac #v4.0.0 | |
| - uses: actions/cache@v4 | |
| with: | |
| path: '/home/runner/work/codemirror/codemirror5/node_modules' | |
| key: ${{ runner.os }}-modules | |
| - run: npm install | |
| - run: npm test |