fix(operator): 「文字列結合演算子」の階層レベルを前後と揃える (#1695) #2053
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: test | |
on: | |
push: | |
branches-ignore: | |
- 'publish1' # srcはテストしても意味がないため | |
pull_request: | |
branches-ignore: | |
- 'publish1' # srcはテストしても意味がないため | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [20] | |
os: [macOS-latest, windows-latest, ubuntu-latest] | |
name: "Build on Node.js: ${{ matrix.node-version }} OS: ${{ matrix.os }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Node.js ${{ matrix.node-version }}" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- run: npm run build | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20, 22.5.1] | |
name: "Test on Node.js ${{ matrix.node-version }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Node.js ${{ matrix.node-version }}" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- run: npm test | |
e2e: | |
runs-on: ubuntu-latest | |
name: E2E | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npm run e2e |