Bump braces from 3.0.2 to 3.0.3 #129
Workflow file for this run
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: main | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
config: | |
- runs-on: ubuntu-latest | |
node-version: '6.11.5' # LTS | |
- runs-on: ubuntu-latest | |
node-version: '8.9.0' # LTS | |
- runs-on: ubuntu-latest | |
node-version: '10.13.0' # LTS | |
- runs-on: ubuntu-latest | |
node-version: '12.13.0' # LTS | |
- runs-on: ubuntu-latest | |
node-version: '14.15.0' # LTS | |
- runs-on: ubuntu-latest | |
node-version: '16.13.0' # LTS | |
- runs-on: ubuntu-latest | |
node-version: '18.12.0' # LTS | |
- runs-on: ubuntu-latest | |
node-version: '20.9.0' # LTS | |
- runs-on: ubuntu-latest | |
node-version: '20.12.2' # LTS (current) | |
CODE_CHECK: 1 | |
- runs-on: ubuntu-latest | |
node-version: '21.7.3' | |
- runs-on: windows-latest | |
node-version: '21.7.3' | |
- runs-on: macos-latest | |
node-version: '21.7.3' | |
runs-on: ${{ matrix.config.runs-on }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.12.2' | |
- name: Node Version | |
run: node --version | |
- name: NPM Version | |
run: npm --version | |
- name: Dependencies | |
run: npm ci | |
- name: 'Dependencies: webpack' | |
working-directory: ./spec/webpacks | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.config.node-version }} | |
- name: Node Version | |
run: node --version | |
- name: NPM Version | |
run: npm --version | |
- name: Test | |
run: npm run test | |
- name: Lint | |
run: npm run lint | |
if: matrix.config.CODE_CHECK == 1 | |
- name: Formatted | |
run: npm run formatted | |
if: matrix.config.CODE_CHECK == 1 | |
publish: | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.12.2' | |
registry-url: https://registry.npmjs.org/ | |
- name: Dependencies | |
run: npm ci | |
- name: Publish | |
run: npm publish --access=public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} |