diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-08-06 11:06:08 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-08-06 11:06:08 -0400 |
commit | ad7eee01ae96ddc6a483c72d09261ca5e43908de (patch) | |
tree | b9baaa011999edffd68af3268276a1b89db22f9d /.github | |
parent | 0b955b561fe8073fb1f69f6b60e9f217fa51ff20 (diff) | |
download | tanzanite-ad7eee01ae96ddc6a483c72d09261ca5e43908de.tar.gz tanzanite-ad7eee01ae96ddc6a483c72d09261ca5e43908de.tar.bz2 tanzanite-ad7eee01ae96ddc6a483c72d09261ca5e43908de.zip |
upgrade to discord.js v13 release (plus fix last minute breaking chanages)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 89bd161..b37f0e0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,9 +2,9 @@ name: lint on: push: - branches: '*' + branches: ['*'] pull_request: - branches: '*' + branches: ['*'] workflow_dispatch: @@ -14,10 +14,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Use Node.js 14.x + - name: Use Node.js 16.x uses: actions/setup-node@v1 with: - node-version: 14.x + node-version: 16.x - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" @@ -46,10 +46,10 @@ jobs: with: persist-credentials: false fetch-depth: 0 - - name: Use Node.js 14.x + - name: Use Node.js 16.x uses: actions/setup-node@v1 with: - node-version: 14.x + node-version: 16.x - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" |