fix popup auth broken due to new COOP header #108
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: Build and Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x, 21.x] | |
steps: | |
- name: ⏬ Checkout code | |
uses: actions/checkout@v2 | |
- name: 🔢 Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: ⏬ Install | |
run: | | |
npm install | |
- name: ✨ Lint | |
run: | | |
npm run lint | |
- name: 🔨 Build | |
run: | | |
npm run build | |
- name: 🧪 Test | |
run: | | |
npm test | |
env: | |
FORCE_COLOR: 1 | |
# - name: 📈 Coveralls | |
# uses: coverallsapp/[email protected] | |
# with: | |
# github-token: ${{ secrets.github_token }} | |
- name: 📦 Publish | |
if: ${{ github.ref == 'refs/heads/main' && matrix['node-version'] == '20.x' }} | |
run: | | |
npm config set //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN | |
npm run trypublish | |
env: | |
CI: true | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |