Adding separate form that allows modification of assignment texts (th… #1011
Workflow file for this run
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: [push, pull_request] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| node-version: ['22', '24'] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm install -g yarn | |
| - run: corepack enable | |
| - run: yarn install | |
| - run: yarn test | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| node-version: ['22', '24'] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm install -g yarn | |
| - run: corepack enable | |
| - run: yarn install | |
| - run: yarn lint |