fix(configuration): trailingComma only applies to multi-line arguments #94
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: release | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build-test-release: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # Required to mint token for npm package provenance | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- run: npm install --legacy-peer-deps | |
- run: npm run build | |
- name: 🧪 Test | |
run: npm test | |
- name: 🦺 Install latest npm with npm package provenance feature | |
run: npm install -g npm@latest | |
- uses: tobua/release-npm-action@v2 | |
with: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
DEBUG: true | |
test-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: npm install --legacy-peer-deps | |
- name: 🧪 Test | |
run: npm test |