Bump eslint from 8.51.0 to 8.55.0 #306
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: "🚨 🚀 🟢 Npm Test Publish Package" | |
on: [pull_request] | |
jobs: | |
release: | |
name: Test Npm Publish | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [15.x] | |
go-version: ['1.20'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 🟢 Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: "https://registry.npmjs.org" | |
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Export Go | |
run: go env -w GO111MODULE=auto | |
working-directory: ./ | |
- name: Install golang all deps | |
run: while read l; do go get -v "$l"; done < <(go list -f '{{ join .Imports "\n" }}' ./cycletls) | |
shell: bash | |
- name: Install npm depencencies | |
run: npm ci --unsafe-perm | |
working-directory: ./ | |
- name: 🚀 publish | |
run: npm publish --dry-run | |
working-directory: ./ |