Bump follow-redirects from 1.15.3 to 1.15.4 #34
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: Test | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- main.js | |
- post.js | |
- run.js | |
- yarn.lock | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- main.js | |
- post.js | |
- run.js | |
- yarn.lock | |
jobs: | |
test: | |
if: "!startsWith(github.event.head_commit.message, '[RELEASE] ')" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build using ncc | |
run: | | |
yarn ncc build main.js -o dist/main | |
yarn ncc build post.js -o dist/post | |
- name: Run action | |
uses: ./ | |
with: | |
access-token: 'token' | |
firewall-id: 'id' | |
dry-run: true |