We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bce354 commit 825485aCopy full SHA for 825485a
.github/workflows/npm.yaml
.github/workflows/yarn.yaml
@@ -0,0 +1,13 @@
1
+name: Check with yarn
2
+on: [push, pull_request]
3
+jobs:
4
+ build:
5
+ name: Install and test with yarn
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v3
9
+ - uses: actions/setup-node@v3
10
+ with:
11
+ node-version: "18"
12
+ - run: yarn install
13
+ - run: yarn test
0 commit comments