This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
Bump @types/cookie from 0.5.4 to 0.6.0 #38
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: Teste | |
on: | |
pull_request: | |
push: | |
jobs: | |
test: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
node: | |
- 20.x | |
- 19.x | |
- 18.x | |
- 17.x | |
- 16.x | |
- 15.x | |
- 14.x | |
name: "Test in node ${{ matrix.node }}" | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm install --no-save | |
- run: npm pack | |
name: Transpiler and Pack |